/* ====== SIGNUP PAGE MODERN COFFEE THEME (SOFT OVAL STYLE) ====== */
body, .signup-page {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #fcf8f3;
  margin: 0;
  padding: 0;
}
.signup-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fcf8f3;
}
.register-content {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 4px 24px 0 #a97c5022;
  padding: 2.2rem 2.1rem 1.7rem 2.1rem;
  max-width: 410px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.register-content-title h2 {
  color: #a97c50;
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
  letter-spacing: -1px;
  font-family: 'Segoe UI', Arial, sans-serif;
}
.register-underline {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #a97c50 60%, #2C1810 100%);
  border-radius: 2px;
  margin: 0 auto 1.2rem auto;
}
.register-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.input-group {
  display: flex;
  align-items: center;
  background: #fcf8f3;
  border-radius: 999px;
  padding: 1.1rem 1.5rem;
  border: 2px solid #c69c6d;
  box-shadow: 0 1px 4px #a97c5012;
  transition: border 0.18s, box-shadow 0.18s;
}
.input-group:focus-within {
  border: 2px solid #a97c50;
  box-shadow: 0 4px 16px #a97c5022;
}
.input-group input,
.input-group textarea {
  border: none;
  outline: none;
  background: transparent;
  font-size: 1.1rem;
  font-family: 'Segoe UI', Arial, sans-serif;
  color: #2C1810;
  flex: 1;
  padding: 0.2rem 0.2rem;
  resize: none;
  font-weight: 500;
  letter-spacing: 0.2px;
}
.input-group input::placeholder,
.input-group textarea::placeholder {
  color: #a97c50;
  font-size: 1.1rem;
  font-weight: 600;
  opacity: 1;
  letter-spacing: 0.1px;
}
.input-group .input-icon {
  color: #b4845c;
  font-size: 1.3rem;
  margin-right: 1.1rem;
  font-weight: bold;
  opacity: 0.98;
}
.input-group.textarea-group {
  align-items: flex-start;
}
.input-group textarea {
  min-height: 60px;
  max-height: 120px;
}
.btn-register {
  background: linear-gradient(90deg, #d2a06e 0%, #7a5432 100%);
  color: #fff;
  border: none;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1.25rem;
  padding: 1.1rem 0;
  width: 100%;
  text-align: center;
  text-decoration: none;
  transition: background 0.18s, box-shadow 0.18s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  box-shadow: 0 2px 12px #a97c5012;
  cursor: pointer;
  font-family: 'Segoe UI', Arial, sans-serif;
  letter-spacing: 0.2px;
  margin-top: 0.2rem;
}
.btn-register:hover {
  background: linear-gradient(90deg, #7a5432 0%, #d2a06e 100%);
  color: #fff;
  box-shadow: 0 4px 20px #a97c5012;
}
.register-separator {
  width: 100%;
  text-align: center;
  margin: 1.2rem 0 0.7rem 0;
  position: relative;
}
.register-separator span {
  background: #fff;
  color: #a97c50;
  font-weight: 700;
  padding: 0 1.1rem;
  position: relative;
  z-index: 1;
  font-family: 'Segoe UI', Arial, sans-serif;
}
.register-separator:before {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: #e7c9a9;
  z-index: 0;
}
.register-footer {
  width: 100%;
  text-align: center;
  margin-top: 0.5rem;
  color: #8d6e63;
  font-size: 1rem;
  font-family: 'Segoe UI', Arial, sans-serif;
}
.register-footer a {
  color: #a97c50;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.18s;
}
.register-footer a:hover {
  color: #2C1810;
}
@media (max-width: 600px) {
  .register-content {
    padding: 1.2rem 0.5rem 1.1rem 0.5rem;
    max-width: 98vw;
  }
  .input-group {
    padding: 0.8rem 0.8rem;
  }
  .btn-register {
    font-size: 1.08rem;
    padding: 0.9rem 0;
  }
}