body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #faf7f4;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.register-container {
  width: 100%;
  max-width: 440px;
  padding: 20px;
}

.register-box {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
  text-align: center;
  padding: 40px 30px;
  transition: 0.3s;
}

.register-box:hover {
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.logo {
  width: 150px;
  margin-bottom: 10px;
}

/* Auto adjust for smaller screens */
@media (max-width: 768px) {
    .logo img {
        height: 40px;
        margin-left: 8px;
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 32px;
        margin-left: 6px;
    }
}

h2 {
  color: #f48924;
  margin-bottom: 5px;
}

h3 {
  color: #777;
  font-weight: 400;
  margin-bottom: 25px;
}

input[type="text"],
input[type="email"],
input[type="password"] {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 30px;
  font-size: 15px;
  outline: none;
  transition: all 0.2s;
  background: #fdfdfd;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus {
  border-color: #f48924;
  box-shadow: 0 0 6px rgba(244,137,36,0.3);
}

.file-label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  color: #555;
  text-align: left;
  padding-left: 10px;
}

input[type="file"] {
  width: 100%;
  background: #fafafa;
  border-radius: 10px;
  padding: 10px;
  border: 1px dashed #ccc;
  margin-bottom: 20px;
  cursor: pointer;
}

button {
  width: 100%;
  background-color: #f48924;
  border: none;
  padding: 12px 0;
  border-radius: 40px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

button:hover {
  background-color: #e47f1f;
}

.message {
  color: red;
  font-weight: 500;
  margin: 10px 0;
}

.links {
  margin-top: 20px;
  font-size: 14px;
}

.links a {
  color: #f48924;
  text-decoration: none;
  font-weight: 500;
}

.links a:hover {
  text-decoration: underline;
}

.links-no-margin {
  margin-top: 2px;
  font-size: 14px;
}

.links-no-margin a {
  color: #f48924;
  text-decoration: none;
  font-weight: 500;
}

.links-no-margin a:hover {
  text-decoration: underline;
}

.skip {
  display: inline-block;
  margin-top: 8px;
  color: #888;
  font-size: 13px;
}

.skip:hover {
  color: #f48924;
}

