/* overlay + card */
.overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.4); align-items: center; justify-content: center; z-index: 9000; }
#resetOverlay {display: none; }
#verifyOverlay {display: none; }
#resetOverlay.open {display: flex; }
#verifyOverlay.open {display: flex; }
.loginModal { background: #fff; border-radius: 12px; width: 100%; max-width: 700px; height: 620px; box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.05); overflow: hidden;  display: flex; flex-direction: column; justify-content: space-between; text-align: center; font-family: "Geist", sans-serif; }

/* header */
.loginModal-header { width: 100%; padding: 16px 20px; display: flex; flex-direction: column;}
.loginModal-close { background: none; border: none;  font-size:20px; line-height: 1; cursor: pointer; text-align: right;}
.loginModal-close img { width: 12px; height: 12px; }
.loginModal-header .login-logo{ width: 100px; align-self: center;}

/* body */
.loginModal-body { width: 100%; display: flex; flex-direction: column; align-items: center; gap: 48px; }
.loginModal-body h2 { font-size: 34px; font-weight: 700; }
.loginModal-body button { padding: 10px 10px; border: none; border-radius: 8px; cursor: pointer; font-size: 15px; width: 150px; background: #111;  color: #fff; font-family: "Inter", sans-serif; font-weight: 300; }
.loginModal p { width: 400px; justify-self: center; color: #A1A1AA; font-family: "Geist", sans-serif; font-weight: 400; line-height: 140%; }
.loginModal-body-verify { font-size: 16px; margin-top: 60px; line-height: 140%;}

/* verify email styling */
.verification-code { display: flex; gap: 12px; justify-content: center; }
.verification-code input { width: 48px; height: 60px; text-align: center; font-size: 24px; border: 1px solid #e4e4e7; border-radius: 8px; background-color: #fafafa; outline: none; transition: border 0.2s ease; font-family: "Geist", sans-serif; }
.verification-code input:focus { border-color: #111; }
.verification-number { background-color: #A1A1AA40; width: 250px; font-size: 20px; border-radius: 8px; height: 38px; display: flex; gap: 18px; justify-content: center; align-items: center; font-family: "Inter", sans-serif;}

/* footer */
.loginModal-footer { width: 100%; font-size: 12px; margin: 24px 0px; border-top: 1px solid #f0f0f0; display: flex; justify-content: center;}
.loginModal-footer p { margin-top: 24px;}
.loginModal-footer .support-email { color: #000; }