/* [project]/app/signup/signup.css [app-client] (css) */
.signup-page {
  --radius-lg: 10px;
  --radius-xl: 20px;
  --shadow-sm: 0 2px 6px #0000000d;
  --shadow-md: 0 4px 10px #00000014;
  --shadow-lg: 0 8px 20px #0000001f;
  --shadow-xl: 0 16px 30px #00000026;
  background: radial-gradient(circle at 10% 20%, #1e7e7e0d 0%, transparent 20%), radial-gradient(circle at 90% 80%, #6bb39b0d 0%, transparent 20%), var(--background-gradient);
  min-height: 100vh;
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, sans-serif;
  position: relative;
  overflow-x: hidden;
  --primary: #1e7e7e !important;
  --primary-dark: #155e5e !important;
  --accent: #3a9b9b !important;
  --secondary: #6bb39b !important;
  --success: #4caf93 !important;
  --heart: #e86b6b !important;
  --error: #e86b6b !important;
  --background-gradient: linear-gradient(135deg, #f6fbfb 0%, #eef7f7 40%, #e8f3f3 100%) !important;
  --surface: #ffffffd9 !important;
  --surface-alt: #a9a5a51a !important;
  --text-primary: #0f2a2a !important;
  --text-secondary: #5f7a7a !important;
  --text-tertiary: #8aa5a5 !important;
  --border: #1e7e7e26 !important;
}

.medical-bg-elements {
  pointer-events: none;
  z-index: 1;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  overflow: hidden;
}

.medical-pattern {
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 10 L30 50 M10 30 L50 30' stroke='%231e7e7e' stroke-width='1' opacity='0.03' fill='none'/%3E%3C/svg%3E");
  width: 100%;
  height: 100%;
  animation: 30s linear infinite patternMove;
  position: absolute;
  top: 0;
  left: 0;
}

.ecg-line {
  opacity: .08;
  width: 100%;
  height: 80px;
  position: absolute;
  bottom: 15%;
  left: 0;
}

.ecg-line svg {
  width: 100%;
  height: 100%;
  animation: 20s linear infinite moveECG;
}

.ecg-path {
  stroke: var(--primary);
  stroke-width: 2px;
  fill: none;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000px;
  animation: 8s ease-in-out infinite drawECG;
}

.stethoscope-icon, .heart-pulse-icon, .caduceus-icon, .dna-helix, .pill-icon {
  opacity: .06;
  width: 60px;
  height: 60px;
  animation: 20s ease-in-out infinite floatIcon;
  position: absolute;
}

.stethoscope-icon {
  top: 15%;
  right: 8%;
}

.heart-pulse-icon {
  animation: 20s ease-in-out infinite reverse floatIcon;
  bottom: 20%;
  left: 5%;
}

.caduceus-icon {
  top: 40%;
  left: 10%;
}

.dna-helix {
  width: 80px;
  height: 80px;
  animation: 30s linear infinite spinSlow;
  top: 60%;
  right: 12%;
}

.pill-icon {
  bottom: 30%;
  right: 18%;
}

.stethoscope-icon svg, .heart-pulse-icon svg, .caduceus-icon svg, .dna-helix svg, .pill-icon svg {
  fill: none;
  stroke-width: 1.5px;
  width: 100%;
  height: 100%;
}

.stethoscope-icon svg {
  stroke: var(--primary);
}

.heart-pulse-icon svg {
  stroke: var(--heart);
}

.caduceus-icon svg {
  stroke: var(--accent);
}

.dna-helix svg {
  stroke: var(--secondary);
}

.pill-icon svg {
  stroke: var(--success);
}

.pulse-ring {
  border: 2px solid var(--primary);
  opacity: .08;
  border-radius: 50%;
  animation: 8s ease-out infinite pulseRing;
  position: absolute;
}

.ring-1 {
  width: 200px;
  height: 200px;
  top: 20%;
  right: 15%;
}

.ring-2 {
  border-color: var(--accent);
  width: 250px;
  height: 250px;
  animation-delay: -3s;
  bottom: 10%;
  left: 20%;
}

.ring-3 {
  border-color: var(--secondary);
  width: 300px;
  height: 300px;
  animation-delay: -6s;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.signup-bg {
  z-index: 0;
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.bg-circle {
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background: #1e7e7e0d;
  border-radius: 50%;
  animation: 20s ease-in-out infinite float;
  position: absolute;
}

.circle-1 {
  background: radial-gradient(circle, #1e7e7e1a 0%, #0000 70%);
  width: 400px;
  height: 400px;
  animation-delay: 0s;
  top: -150px;
  right: -150px;
}

.circle-2 {
  background: radial-gradient(circle, #4a90e214 0%, #0000 70%);
  width: 300px;
  height: 300px;
  animation-delay: 5s;
  bottom: -100px;
  left: -100px;
}

.circle-3 {
  background: radial-gradient(circle, #6bb39b0f 0%, #0000 70%);
  width: 250px;
  height: 250px;
  animation-delay: 10s;
  bottom: 20%;
  right: 10%;
}

.signup-container {
  z-index: 20;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 1.5rem;
  display: flex;
  position: relative;
}

.signup-header {
  text-align: center;
  color: var(--text-primary);
  z-index: 20;
  margin-top: -1rem;
  margin-bottom: 1rem;
  position: relative;
}

.logo-container {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-backdrop-filter: blur(15px);
  border-radius: var(--radius-xl);
  width: 60px;
  height: 60px;
  box-shadow: var(--shadow-lg);
  border: 2px solid #fff3;
  justify-content: center;
  align-items: center;
  margin: 0 auto .75rem;
  transition: transform .3s;
  display: flex;
}

.logo-container:hover {
  transform: scale(1.05)rotate(5deg);
}

.logo-icon {
  color: #fff;
  filter: drop-shadow(0 4px 6px #0000001a);
  width: 30px;
  height: 30px;
}

.signup-header h1 {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-text-fill-color: transparent;
  letter-spacing: -.02em;
  -webkit-background-clip: text;
  background-clip: text;
  margin-top: -.9rem;
  margin-bottom: .1rem;
  font-size: 1.8rem;
  font-weight: 700;
}

.signup-header p {
  color: var(--text-secondary);
  font-size: .9rem;
  font-weight: 400;
}

.signup-card {
  background: var(--surface);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  z-index: 20;
  width: 100%;
  max-width: 550px;
  padding: 1.5rem;
  animation: .6s .2s both fadeInUp;
  position: relative;
}

.user-type-toggle {
  background: var(--surface-alt);
  border-radius: 50px;
  gap: .5rem;
  margin-bottom: 1.5rem;
  padding: .4rem;
  display: flex;
  box-shadow: inset 0 2px 4px #00000005;
}

.toggle-btn {
  color: var(--text-tertiary);
  cursor: pointer;
  background: none;
  border: none;
  border-radius: 40px;
  flex: 1;
  justify-content: center;
  align-items: center;
  gap: .4rem;
  padding: .6rem .5rem;
  font-size: .9rem;
  font-weight: 600;
  transition: all .3s cubic-bezier(.4, 0, .2, 1);
  display: flex;
  position: relative;
  overflow: hidden;
}

.toggle-btn svg {
  width: 16px;
  height: 16px;
  transition: transform .3s;
}

.toggle-btn.active {
  background: var(--surface);
  color: var(--primary);
  box-shadow: var(--shadow-md);
}

.toggle-btn.active svg {
  transform: scale(1.1);
}

.toggle-btn:hover:not(.active) {
  background: var(--surface);
  color: var(--text-primary);
}

.toggle-btn:hover:not(.active) svg {
  transform: translateY(-2px);
}

.error-message, .success-message {
  border-radius: var(--radius-lg);
  align-items: center;
  gap: .6rem;
  margin-bottom: 1rem;
  padding: .6rem .8rem;
  animation: .3s slideIn;
  display: flex;
}

.error-message {
  color: var(--error);
  background: #e86b6b1a;
  border: 1px solid #e86b6b33;
}

.success-message {
  color: var(--success);
  background: #6bb39b1a;
  border: 1px solid #6bb39b33;
}

.error-message svg, .success-message svg {
  flex-shrink: 0;
  width: 1.1rem;
  height: 1.1rem;
  animation: .3s scaleIn;
}

.error-message svg {
  color: var(--error);
}

.success-message svg {
  color: var(--success);
}

.error-message span, .success-message span {
  font-size: .85rem;
  font-weight: 500;
  line-height: 1.3;
}

.signup-form {
  flex-direction: column;
  gap: 1rem;
  display: flex;
}

.form-group {
  flex-direction: column;
  gap: .2rem;
  display: flex;
}

.form-group label {
  color: var(--text-primary);
  letter-spacing: .3px;
  font-size: .85rem;
  font-weight: 600;
}

.required {
  color: var(--error);
  margin-left: 3px;
  font-size: .9rem;
}

.input-wrapper {
  align-items: center;
  display: flex;
  position: relative;
}

.input-icon {
  color: var(--text-tertiary);
  z-index: 1;
  justify-content: center;
  align-items: center;
  transition: color .2s;
  display: flex;
  position: absolute;
  left: .75rem;
}

.input-icon svg {
  width: 1rem;
  height: 1rem;
}

.input-wrapper input, .input-wrapper select {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  width: 100%;
  color: var(--text-primary);
  box-shadow: var(--shadow-sm);
  padding: .65rem 2.2rem;
  font-size: .9rem;
  transition: all .3s cubic-bezier(.4, 0, .2, 1);
}

.input-wrapper select {
  appearance: none;
  cursor: pointer;
  font-weight: 500;
}

.input-wrapper select:disabled {
  background: var(--surface-alt);
  cursor: not-allowed;
  opacity: .7;
  border-color: var(--border);
}

.select-arrow {
  color: var(--primary);
  pointer-events: none;
  z-index: 2;
  background: #1e7e7e1a;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 22px;
  height: 22px;
  transition: all .3s;
  display: flex;
  position: absolute;
  right: .75rem;
}

.select-arrow svg {
  width: .9rem;
  height: .9rem;
  transition: transform .3s;
}

.input-wrapper:hover select {
  border-color: var(--primary);
  background: linear-gradient(135deg, var(--surface) 0%, #1e7e7e05 100%);
  box-shadow: 0 4px 10px #1e7e7e1a;
}

.input-wrapper:hover .select-arrow {
  background: var(--primary);
  color: #fff;
  transform: scale(1.1);
}

.input-wrapper input:focus, .input-wrapper select:focus {
  border-color: var(--primary);
  background: #fff;
  outline: none;
  transform: translateY(-1px);
  box-shadow: 0 0 0 3px #1e7e7e1a;
}

.input-wrapper input:focus + .input-icon, .input-wrapper select:focus ~ .input-icon {
  color: var(--primary);
}

.input-wrapper select:focus ~ .select-arrow, .input-wrapper:focus-within .select-arrow {
  background: var(--primary);
  color: #fff;
  transform: rotate(180deg);
}

.input-wrapper select option {
  color: var(--text-primary);
  background: #fff;
  padding: 8px 10px;
  font-size: .9rem;
  font-weight: 500;
}

.input-wrapper select option:checked {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: #fff;
}

.input-wrapper select option:hover {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%) !important;
  color: #fff !important;
}

.input-wrapper select:disabled + .select-arrow {
  background: var(--surface-alt);
  color: var(--text-tertiary);
  opacity: .5;
}

.input-wrapper select:not([value=""]):not(:focus) ~ .select-arrow {
  animation: 3s infinite gentlePulse;
}

@keyframes gentlePulse {
  0%, 100% {
    opacity: .8;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}

.password-strength {
  margin-top: .4rem;
  margin-bottom: .3rem;
}

.strength-bar-container {
  background: #1e7e7e1a;
  border-radius: 3px;
  height: 3px;
  margin-bottom: .1rem;
  overflow: hidden;
}

.strength-bar {
  border-radius: 3px;
  height: 100%;
  transition: all .3s;
}

.strength-text {
  text-align: right;
  font-size: .7rem;
  font-weight: 600;
  display: block;
}

.compact-requirements {
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: .4rem;
  font-size: .75rem;
  animation: .2s fadeIn;
  display: flex;
}

.requirement-item {
  align-items: center;
  gap: .2rem;
  display: flex;
}

.req-bullet {
  width: 14px;
  color: var(--text-tertiary);
  font-size: .9rem;
  display: inline-block;
}

.req-bullet.met {
  color: var(--success);
}

.req-text {
  color: var(--text-secondary);
  white-space: nowrap;
}

.req-text.met {
  color: var(--success);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-3px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.field-hint {
  align-items: center;
  gap: .3rem;
  margin-top: .2rem;
  font-size: .75rem;
  display: flex;
}

.field-hint.error-hint {
  color: var(--error);
}

.field-hint.success-hint {
  color: var(--success);
}

.field-hint svg {
  width: 12px;
  height: 12px;
}

.password-toggle {
  color: var(--text-tertiary);
  cursor: pointer;
  z-index: 1;
  background: none;
  border: none;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  padding: .3rem;
  transition: all .2s;
  display: flex;
  position: absolute;
  right: .75rem;
}

.password-toggle:hover {
  color: var(--primary);
  background: #1e7e7e1a;
}

.password-toggle svg {
  width: 1rem;
  height: 1rem;
}

.info-message {
  border-radius: var(--radius-lg);
  color: var(--accent);
  background: #4a90e21a;
  border: 1px solid #4a90e233;
  align-items: flex-start;
  gap: .6rem;
  margin: .2rem 0;
  padding: .6rem .8rem;
  animation: .3s slideIn;
  display: flex;
}

.info-message svg {
  width: 1.1rem;
  height: 1.1rem;
  color: var(--accent);
  flex-shrink: 0;
  animation: 2s infinite pulse-gentle;
}

.info-message span {
  font-size: .85rem;
  line-height: 1.3;
}

.info-message strong {
  color: var(--primary-dark);
  font-weight: 700;
}

.terms-checkbox-container {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: #1e7e7e08;
  margin: .5rem 0 .2rem;
  padding: .4rem;
}

.checkbox-label {
  cursor: pointer;
  color: var(--text-secondary);
  -webkit-user-select: none;
  user-select: none;
  align-items: center;
  gap: .6rem;
  font-size: .85rem;
  display: flex;
}

.terms-checkbox {
  appearance: none;
  border: 2px solid var(--border);
  background: var(--surface);
  cursor: pointer;
  border-radius: 5px;
  flex-shrink: 0;
  width: 1.1rem;
  height: 1.1rem;
  transition: all .2s;
  position: relative;
}

.terms-checkbox:checked {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  border-color: var(--primary);
}

.terms-checkbox:checked:after {
  content: "";
  border: 2px solid #fff;
  border-width: 0 2px 2px 0;
  width: 5px;
  height: 8px;
  position: absolute;
  top: 1px;
  left: 4px;
  transform: rotate(45deg);
}

.terms-checkbox:focus {
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 0 3px #1e7e7e1a;
}

.terms-checkbox:hover:not(:disabled) {
  border-color: var(--primary);
  transform: scale(1.05);
}

.terms-checkbox:disabled {
  opacity: .5;
  cursor: not-allowed;
}

.checkbox-text {
  flex: 1;
  line-height: 1.4;
}

.terms-link {
  color: var(--primary);
  border-bottom: 1px dashed #0000;
  font-weight: 600;
  text-decoration: none;
  transition: all .2s;
}

.terms-link:hover {
  color: var(--primary-dark);
  border-bottom-color: var(--primary);
}

.submit-button {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  cursor: pointer;
  border: none;
  justify-content: center;
  align-items: center;
  gap: .4rem;
  margin-top: .5rem;
  padding: .7rem;
  font-size: .95rem;
  font-weight: 600;
  transition: all .3s cubic-bezier(.4, 0, .2, 1);
  display: flex;
  position: relative;
  overflow: hidden;
}

.submit-button:before {
  content: "";
  background: #fff3;
  border-radius: 50%;
  width: 0;
  height: 0;
  transition: width .6s, height .6s;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.submit-button:hover:not(:disabled):before {
  width: 400px;
  height: 400px;
}

.submit-button:hover:not(:disabled) {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.submit-button:active:not(:disabled) {
  transform: translateY(0);
}

.submit-button:disabled {
  opacity: .6;
  cursor: not-allowed;
  background: linear-gradient(135deg, var(--text-tertiary), var(--text-secondary));
}

.signup-footer {
  text-align: center;
  margin-top: 1rem;
}

.signup-footer p {
  color: var(--text-secondary);
  margin-bottom: .3rem;
  font-size: .85rem;
}

.login-link {
  color: var(--primary);
  border-radius: 30px;
  padding: .2rem .4rem;
  font-weight: 700;
  text-decoration: none;
  transition: all .2s;
  position: relative;
}

.login-link:after {
  content: "";
  background: var(--primary);
  width: 0;
  height: 2px;
  transition: width .2s;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.login-link:hover:after {
  width: 80%;
}

.login-link:hover {
  color: var(--primary-dark);
}

.form-row {
  gap: .75rem;
  width: 100%;
  display: flex;
}

.form-group.half {
  flex: 1;
  min-width: 0;
}

.spinner {
  border: 2px solid #ffffff4d;
  border-top-color: #fff;
  border-radius: 50%;
  width: .9rem;
  height: .9rem;
  margin-right: .3rem;
  animation: .8s linear infinite spin;
  display: inline-block;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-15px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(15px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-8px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes floatIcon {
  0%, 100% {
    transform: translate(0)rotate(0);
  }

  25% {
    transform: translate(6px, -8px)rotate(2deg);
  }

  50% {
    transform: translate(10px)rotate(0);
  }

  75% {
    transform: translate(6px, 8px)rotate(-2deg);
  }
}

@keyframes pulseRing {
  0% {
    opacity: 0;
    transform: scale(.8);
  }

  10% {
    opacity: .1;
  }

  20% {
    opacity: 0;
    transform: scale(1.2);
  }

  100% {
    opacity: 0;
    transform: scale(1.3);
  }
}

@keyframes drawECG {
  0% {
    stroke-dashoffset: 1000px;
  }

  50% {
    stroke-dashoffset: 0;
  }

  100% {
    stroke-dashoffset: -1000px;
  }
}

@keyframes moveECG {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes spinSlow {
  from {
    transform: rotate(0);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes patternMove {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: 60px 60px;
  }
}

@keyframes float {
  0%, 100% {
    transform: translate(0)rotate(0);
  }

  33% {
    transform: translate(30px, -20px)rotate(120deg);
  }

  66% {
    transform: translate(-15px, 30px)rotate(240deg);
  }
}

@media (max-width: 640px) {
  .signup-card {
    max-width: 100%;
    padding: 1.2rem;
  }

  .form-row {
    flex-direction: column;
    gap: .5rem;
  }

  .signup-header h1 {
    font-size: 1.6rem;
  }

  .signup-header p {
    font-size: .85rem;
  }

  .logo-container {
    width: 50px;
    height: 50px;
  }

  .logo-icon {
    width: 25px;
    height: 25px;
  }

  .user-type-toggle {
    flex-direction: column;
    gap: .3rem;
  }

  .toggle-btn {
    padding: .5rem;
  }

  .compact-requirements {
    flex-direction: column;
    gap: .5rem;
  }

  .requirement-item {
    width: 100%;
  }

  .stethoscope-icon, .heart-pulse-icon, .caduceus-icon, .dna-helix, .pill-icon, .ring-3 {
    display: none;
  }

  .ecg-line {
    opacity: .05;
    height: 40px;
  }
}

@media (prefers-color-scheme: dark) {
  .input-wrapper select option:checked {
    color: #fff;
    background: linear-gradient(135deg, #1e7e7e 0%, #3a9b9b 100%);
  }
}

@media (prefers-contrast: high) {
  .input-wrapper select {
    border-width: 2px;
  }

  .select-arrow {
    background: var(--primary);
    color: #fff;
    border: 2px solid;
  }
}

@media (prefers-reduced-motion: reduce) {
  .medical-pattern, .ecg-line, .stethoscope-icon, .heart-pulse-icon, .caduceus-icon, .dna-helix, .pill-icon, .pulse-ring, .bg-circle, .select-arrow, .input-wrapper select, .logo-container, .toggle-btn, .submit-button, .terms-checkbox, .login-link:after {
    transition: none !important;
    animation: none !important;
  }
}

.input-wrapper.date-input-wrapper {
  align-items: center;
  display: flex;
  position: relative;
}

.input-wrapper input.manual-date-input {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  width: 100%;
  color: var(--text-primary);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  letter-spacing: .5px;
  padding: .65rem 2.5rem;
  font-family: Segoe UI, Roboto, Helvetica Neue, sans-serif;
  font-size: .95rem;
  transition: all .3s;
}

.input-wrapper input.manual-date-input:hover {
  border-color: var(--primary);
  background: linear-gradient(135deg, var(--surface) 0%, #1e7e7e05 100%);
  box-shadow: 0 4px 10px #1e7e7e1a;
}

.input-wrapper input.manual-date-input:focus {
  border-color: var(--primary);
  background: #fff;
  outline: none;
  box-shadow: 0 0 0 3px #1e7e7e1a;
}

.input-wrapper input.manual-date-input::placeholder {
  color: var(--text-tertiary);
  opacity: .8;
  letter-spacing: .5px;
  font-size: .9rem;
}

.calendar-toggle-btn {
  width: 22px;
  height: 22px;
  color: var(--primary);
  cursor: pointer;
  z-index: 2;
  background: #1e7e7e1a;
  border: none;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  padding: 0;
  transition: all .3s;
  display: flex;
  position: absolute;
  top: 50%;
  right: .75rem;
  transform: translateY(-50%);
}

.calendar-toggle-btn svg {
  width: 14px;
  height: 14px;
}

.calendar-toggle-btn:hover, .input-wrapper:focus-within .calendar-toggle-btn {
  background: var(--primary);
  color: #fff;
  transform: translateY(-50%)scale(1.1);
}

.hidden-date-picker {
  opacity: 0;
  pointer-events: none;
  z-index: -1;
  width: 0;
  height: 0;
  position: absolute;
}

.input-wrapper input.manual-date-input:not(:placeholder-shown) {
  color: var(--text-primary);
  font-weight: 500;
}

.input-wrapper input.manual-date-input[value*="/"] {
  letter-spacing: .5px;
}

.input-wrapper.address-wrapper {
  align-items: flex-start;
}

.input-icon.address-icon {
  top: .75rem;
  transform: none;
}

textarea.fixed-address-input {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  width: 100%;
  color: var(--text-primary);
  box-shadow: var(--shadow-sm);
  resize: none;
  min-height: 70px;
  padding: .75rem 2.2rem;
  font-family: inherit;
  font-size: .95rem;
  line-height: 1.5;
  transition: all .3s cubic-bezier(.4, 0, .2, 1);
}

textarea.fixed-address-input:focus {
  border-color: var(--primary);
  background: #fff;
  outline: none;
  box-shadow: 0 0 0 3px #1e7e7e1a;
}

textarea.fixed-address-input:hover {
  border-color: var(--primary);
  background: linear-gradient(135deg, var(--surface) 0%, #1e7e7e05 100%);
}

textarea.fixed-address-input::placeholder {
  color: var(--text-tertiary);
  opacity: .8;
  font-size: .9rem;
}

.address-hint {
  color: var(--text-tertiary);
  border: 1px dashed var(--border);
  background: #1e7e7e08;
  border-radius: 30px;
  align-items: center;
  gap: .4rem;
  width: fit-content;
  margin-top: .3rem;
  padding: .25rem .75rem;
  font-size: .7rem;
  display: flex;
}

.address-hint svg {
  width: 12px;
  height: 12px;
  color: var(--primary);
  opacity: .6;
}

.input-wrapper input[type="date"]:invalid:before, .date-format-hint, .age-display, .age-indicator, .age-badge, .age-warning, .age-verified, .input-wrapper input.professional-date-input, .calendar-icon {
  display: none;
}

@media (max-width: 640px) {
  .input-wrapper input.manual-date-input {
    padding: .6rem 2.3rem;
    font-size: .9rem;
  }

  .calendar-toggle-btn {
    width: 20px;
    height: 20px;
    right: .6rem;
  }

  .calendar-toggle-btn svg {
    width: 12px;
    height: 12px;
  }

  textarea.fixed-address-input {
    min-height: 60px;
    font-size: .9rem;
  }

  .address-hint {
    padding: .2rem .6rem;
    font-size: .65rem;
  }
}

@media (prefers-contrast: high) {
  .calendar-toggle-btn {
    background: var(--primary);
    color: #fff;
    border: 2px solid;
  }

  .address-hint {
    border: 1px solid var(--primary);
  }
}

@media (prefers-reduced-motion: reduce) {
  .calendar-toggle-btn, .input-wrapper input.manual-date-input {
    transition: none;
  }
}

/*# sourceMappingURL=app_signup_signup_261ec6da.css.map*/