:root {
    --prime-orange: #f26522;
    --prime-orange-dark: #d94f0d;
    --prime-cyan: #0aa9bd;
    --prime-cyan-dark: #087e91;
    --prime-ink: #142b3a;
    --prime-muted: #647683;
    --prime-border: #dcebef;
    --prime-bg: #f4fafb;
}

* { box-sizing: border-box; }

body {
    min-height: 100vh;
    margin: 0;
    color: var(--prime-ink);
    background: radial-gradient(circle at 8% 8%, rgba(10, 169, 189, .14), transparent 30%), radial-gradient(circle at 92% 92%, rgba(242, 101, 34, .13), transparent 28%), var(--prime-bg);
    font-family: "Inter", Arial, sans-serif;
}

.reset-page { display: grid; min-height: 100vh; place-items: center; padding: 32px; }
.reset-shell { display: grid; width: min(1060px, 100%); min-height: 620px; grid-template-columns: .92fr 1.08fr; overflow: hidden; border: 1px solid var(--prime-border); border-radius: 28px; background: #fff; box-shadow: 0 28px 80px rgba(20, 43, 58, .13); }
.reset-brand { position: relative; display: flex; flex-direction: column; justify-content: space-between; overflow: hidden; padding: 48px; border-right: 1px solid var(--prime-border); background: linear-gradient(145deg, #e9f9fa 0%, #f8fdfd 76%); }
.reset-brand::after { position: absolute; right: -100px; bottom: -110px; width: 300px; height: 300px; border: 52px solid rgba(10, 169, 189, .08); border-radius: 50%; content: ''; }
.reset-logo, .reset-brand-copy, .reset-brand-note { position: relative; z-index: 1; }
.reset-logo { display: flex; align-items: center; gap: 13px; color: var(--prime-ink); text-decoration: none; }
.reset-logo img { width: 70px; height: 70px; object-fit: contain; }
.reset-logo strong { display: block; font-size: 20px; }
.reset-logo span span { color: var(--prime-muted); font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
.reset-brand-copy { margin: 50px 0; }
.reset-brand-copy small { color: var(--prime-cyan-dark); font-size: 12px; font-weight: 800; letter-spacing: 1.2px; text-transform: uppercase; }
.reset-brand-copy h1 { max-width: 390px; margin: 16px 0 14px; font-size: clamp(34px, 4vw, 46px); line-height: 1.08; letter-spacing: -2px; }
.reset-brand-copy p { max-width: 380px; margin: 0; color: var(--prime-muted); font-size: 14px; line-height: 1.75; }
.reset-brand-note { color: #81969e; font-size: 12px; }
.reset-content { display: flex; align-items: center; padding: 58px 72px; }
.reset-form-wrap { width: 100%; max-width: 440px; margin: 0 auto; }
.reset-icon { display: grid; width: 58px; height: 58px; place-items: center; border-radius: 16px; background: #e9f9fa; color: var(--prime-cyan-dark); font-size: 27px; }
.reset-form-wrap h2 { margin: 22px 0 10px; font-size: 31px; letter-spacing: -1px; }
.reset-intro { margin: 0 0 28px; color: var(--prime-muted); font-size: 14px; line-height: 1.7; }
.reset-field { margin-bottom: 18px; }
.reset-field label { display: block; margin-bottom: 7px; font-size: 13px; font-weight: 700; }
.reset-field input { width: 100%; min-height: 50px; padding: 12px 14px; border: 1px solid #cbdde2; border-radius: 12px; outline: 0; font: inherit; }
.reset-field input:focus { border-color: var(--prime-cyan); box-shadow: 0 0 0 3px rgba(10, 169, 189, .13); }
.reset-button { display: inline-flex; width: 100%; min-height: 50px; align-items: center; justify-content: center; gap: 8px; border: 0; border-radius: 12px; background: var(--prime-orange); color: #fff; font-size: 14px; font-weight: 800; cursor: pointer; }
.reset-button:hover { background: var(--prime-orange-dark); }
.reset-back { display: inline-flex; align-items: center; gap: 6px; margin-top: 22px; color: var(--prime-cyan-dark); font-size: 13px; font-weight: 700; text-decoration: none; }
.reset-alert { margin-bottom: 20px; padding: 13px 15px; border: 1px solid; border-radius: 12px; font-size: 13px; line-height: 1.55; }
.reset-alert.is-success { border-color: #a7e1c3; background: #effcf5; color: #17663b; }
.reset-alert.is-error { border-color: #f4b8b8; background: #fff3f3; color: #9c2b2b; }
.reset-security-note { display: flex; gap: 8px; margin-top: 24px; color: #82969e; font-size: 11px; line-height: 1.5; }

@media (max-width: 820px) {
    .reset-page { padding: 20px; }
    .reset-shell { min-height: auto; grid-template-columns: 1fr; }
    .reset-brand { gap: 24px; padding: 28px 34px; border-right: 0; border-bottom: 1px solid var(--prime-border); }
    .reset-brand-copy { display: none; }
    .reset-content { padding: 44px 34px; }
}

@media (max-width: 520px) {
    .reset-page { display: block; padding: 0; }
    .reset-shell { min-height: 100vh; border: 0; border-radius: 0; box-shadow: none; }
    .reset-brand { padding: 22px 24px; }
    .reset-logo img { width: 52px; height: 52px; }
    .reset-brand-note { display: none; }
    .reset-content { align-items: flex-start; padding: 42px 24px; }
}
