:root {
    --text-dark: #111319;
    --text-soft: #6f737c;
    --line: #e6e8ed;
    --line-strong: #d9dde5;
    --white: #ffffff;
    --black-btn: #121317;
    --bg-shell: #061225;
    --danger: #d54852;
    --accent: #fda917;
    --accent-strong: #f59a06;
    --accent-soft: rgba(253, 169, 23, 0.18);
    --ink: #0f1521;
    --focus-yellow: #f2a10a;
    --focus-yellow-text: #c47a00;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    min-height: 100%;
}

body.login-body {
    font-family: "Manrope", "Segoe UI", sans-serif;
    background-color: #061022;
    background-image: url("../img/bg-rendanet.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    padding: 0;
    overflow: hidden;
}

.login-shell {
    width: 100%;
    height: 100dvh;
    min-height: 100vh;
    margin: 0;
    position: relative;
    display: grid;
    grid-template-columns: 55% 45%;
    gap: 12px;
    padding: 18px;
    background: transparent;
}

.login-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(6, 14, 30, 0.54) 0%, rgba(6, 14, 30, 0.28) 44%, rgba(6, 14, 30, 0.14) 100%);
    pointer-events: none;
    z-index: 0;
}

.hero-panel {
    position: relative;
    z-index: 1;
    margin: 0;
    border-radius: 0;
    overflow: visible;
    isolation: isolate;
    background: transparent;
}

.hero-image {
    display: none;
}

.hero-panel::before {
    content: "";
    position: absolute;
    inset: 0;
}

.hero-topbar {
    position: absolute;
    top: 28px;
    left: 24px;
    right: 24px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.hero-brand {
    display: inline-flex;
    align-items: center;
    gap: 0;
    line-height: 0;
}

.hero-brand-badge {
    width: 31px;
    height: 31px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.92);
    color: #1f3d72;
    font-size: 0.95rem;
}

.hero-brand-logo {
    width: 150px;
    height: auto;
    display: block;
    filter: brightness(0) invert(1);
}

.hero-back {
    position: absolute;
    right: 8px;
    left: auto;
    transform: none;
    color: rgba(255, 255, 255, 0.84);
    text-decoration: none;
    font-size: 0.94rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hero-copy {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 28px;
    z-index: 2;
    color: #f4f8ff;
    max-width: 660px;
}

.hero-copy h2 {
    font-size: clamp(2.16rem, 4.8vw, 4.1rem);
    line-height: 1.1;
    letter-spacing: -0.035em;
    font-weight: 800;
}

.hero-copy p {
    margin-top: 14px;
    max-width: 540px;
    color: rgba(239, 246, 255, 0.82);
    font-size: 0.98rem;
    line-height: 1.42;
    font-weight: 500;
}

.hero-indicator {
    display: inline-block;
    width: 26px;
    height: 4px;
    margin-top: 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
}

.form-panel {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.panel-content,
.forgot-panel {
    width: min(900px, 100%);
    border-radius: 18px;
    background: linear-gradient(180deg, #fcfcfd 0%, #f7f8fb 100%);
    border: 1px solid rgba(219, 224, 233, 0.92);
    box-shadow:
        0 18px 38px rgba(4, 11, 24, 0.24),
        0 2px 0 rgba(255, 255, 255, 0.85) inset;
    margin-right: 10px;
}

.panel-content {
    position: relative;
    overflow: hidden;
    min-height: calc(100dvh - 36px);
    padding: 44px 46px 34px;
    animation: panelSlideIn 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        padding-top: 170px;
}

.panel-content::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 120px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0));
    pointer-events: none;
}

.panel-content > * {
    position: relative;
    z-index: 1;
}

.panel-content h1 {
    color: #111319;
    font-size: clamp(1.9rem, 2.8vw, 2.8rem);
    line-height: 1.04;
    letter-spacing: -0.03em;
    font-weight: 800;
    text-shadow: 0 1px 0 rgba(255, 235, 198, 0.55);
    animation: elementRise 0.58s ease both;
}

.welcome-text {
    margin-top: 10px;
    color: #2f5fa0;
    font-size: 0.92rem;
    line-height: 1.45;
    font-weight: 600;
    animation: elementRise 0.58s ease both;
    animation-delay: 0.08s;
}

.login-form {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.login-form > * {
    animation: elementRise 0.58s ease both;
}

.login-form > *:nth-child(1) { animation-delay: 0.12s; }
.login-form > *:nth-child(2) { animation-delay: 0.18s; }
.login-form > *:nth-child(3) { animation-delay: 0.24s; }
.login-form > *:nth-child(4) { animation-delay: 0.3s; }
.login-form > *:nth-child(5) { animation-delay: 0.34s; }

.input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.input-label {
    color: #2b3241;
    font-size: 0.95rem;
    font-weight: 700;
    transition: color 0.2s ease;
}

.input-box {
    position: relative;
    display: block;
    border-radius: 16px;
    border: 1.6px solid #bcc6d4;
    background: linear-gradient(180deg, #f5f7fa 0%, #eef2f7 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.95),
        0 16px 24px -26px rgba(17, 27, 43, 0.85);
    transition: border-color 0.24s ease, box-shadow 0.24s ease, transform 0.24s ease;
    overflow: hidden;
}

.input-box::before {
    content: none;
}

.input-box::after {
    content: none;
}

.input-icon {
    position: absolute;
    top: 50%;
    left: 18px;
    transform: translateY(-50%);
    color: #9ba5b3;
    font-size: 1.05rem;
    transition: color 0.2s ease, transform 0.2s ease;
    pointer-events: none;
    z-index: 2;
}

.input-box input {
    width: 100%;
    height: 52px;
    border-radius: 16px;
    border: 0;
    background: transparent;
    color: #2d3544;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1;
    padding: 0 56px 0 50px;
    transition: color 0.22s ease;
    position: relative;
    z-index: 1;
}

.input-box input::placeholder {
    color: #96a1b1;
    font-weight: 600;
    opacity: 1;
    transition: color 0.22s ease;
}

.input-box:hover {
    border-color: #b2bdcc;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.95),
        0 18px 28px -26px rgba(17, 27, 43, 0.85);
}

.input-box input:focus {
    outline: none;
    color: var(--focus-yellow-text);
    caret-color: var(--focus-yellow);
}

.input-group:focus-within .input-box {
    border-color: var(--focus-yellow);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.95),
        0 0 0 5px rgba(253, 169, 23, 0.18),
        0 20px 30px -26px rgba(195, 122, 0, 0.45);
    transform: translateY(-1px);
}

.input-box input:focus::placeholder {
    color: #d49a37;
}

.input-box-password input {
    padding-right: 58px;
}

.toggle-password {
    position: absolute;
    top: 50%;
    right: 14px;
    transform: translateY(-50%) scale(1);
    width: 30px;
    height: 30px;
    border-radius: 999px;
    border: 0;
    background: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #9da7b5;
    cursor: pointer;
    transition: color 0.2s ease, transform 0.2s ease, background-color 0.2s ease;
    z-index: 2;
}

.toggle-password i {
    font-size: 1.05rem;
}

.toggle-password:hover {
    color: #758295;
    background: rgba(128, 144, 166, 0.2);
}

.toggle-password:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(177, 189, 206, 0.65);
}

.input-group:focus-within .input-label {
    color: var(--focus-yellow-text);
}

.input-group:focus-within .input-icon {
    color: var(--focus-yellow);
    transform: translateY(-50%) scale(1.03);
}

.input-group:focus-within .toggle-password {
    color: var(--focus-yellow);
    transform: translateY(-50%) scale(1.02);
}

.input-box.has-value input {
    color: #283041;
}

.input-box.has-value {
    border-color: #acb8c8;
}

.input-box.has-value .input-icon {
    color: #7d899c;
}

.remember-row {
    margin-top: 2px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.remember-check {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #646b78;
    font-size: 0.92rem;
    font-weight: 600;
    cursor: pointer;
    user-select: none;
    transition: color 0.2s ease;
}

.remember-check input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}

.check-ui {
    width: 22px;
    height: 22px;
    border-radius: 7px;
    border: 2px solid #7e8592;
    background: linear-gradient(180deg, #f6f7f9 0%, #eef1f5 100%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.check-ui::after {
    content: "";
    width: 8px;
    height: 5px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: translateY(-1px) rotate(-45deg) scale(0.8);
    opacity: 0;
    transition: opacity 0.16s ease, transform 0.16s ease;
}

.remember-text {
    line-height: 1;
}

.remember-check:hover {
    color: #505866;
}

.remember-check:hover .check-ui {
    border-color: #6f7886;
}

.remember-check input:focus-visible + .check-ui {
    box-shadow: 0 0 0 4px rgba(145, 157, 176, 0.32);
}

.remember-check input:checked + .check-ui {
    border-color: #f1a113;
    background: linear-gradient(180deg, #f9b02c 0%, #ed9e10 100%);
    box-shadow: 0 8px 16px -12px rgba(241, 161, 19, 0.9);
}

.remember-check input:checked + .check-ui::after {
    opacity: 1;
    transform: translateY(-1px) rotate(-45deg) scale(1);
}

.remember-row a {
    color: #646b78;
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    transition: color 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
}

.remember-row a:hover {
    color: #4f5766;
    transform: translateY(-1px);
    opacity: 0.95;
}

.remember-row a:focus-visible {
    outline: none;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.btn-login,
.btn-secondary {
    width: 100%;
    height: 54px;
    border-radius: 999px;
    border: 0;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
}

.btn-login {
    margin-top: 4px;
    color: #ffffff;
    background: var(--black-btn);
    transition: transform 0.2s ease, filter 0.2s ease;
}

#loginSubmit {
    height: 52px;
    margin-top: 6px;
    border-radius: 10px;
    border: 1px solid #dc8f03;
    background: #f7a81a;
    color: #fff;
    font-size: 0.97rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0;
    text-align: center;
    filter: none;
    box-shadow:
        0 1px 0 rgba(255, 240, 200, 0.8) inset,
        0 14px 24px -20px rgba(221, 133, 5, 0.95);
    transition: transform 0.16s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

#loginSubmit::before {
    content: none;
}

#loginSubmit:hover {
    background: #f9b12a;
    transform: translateY(-1px);
    box-shadow:
        0 1px 0 rgba(255, 240, 200, 0.82) inset,
        0 16px 28px -20px rgba(221, 133, 5, 1);
    filter: none;
}

#loginSubmit:focus-visible {
    outline: none;
    box-shadow:
        0 0 0 4px rgba(247, 174, 42, 0.34),
        0 1px 0 rgba(255, 240, 200, 0.82) inset,
        0 16px 28px -20px rgba(221, 133, 5, 1);
}

#loginSubmit:active {
    transform: translateY(1px);
    background: #e79a10;
    box-shadow:
        0 1px 0 rgba(250, 220, 157, 0.68) inset,
        0 8px 16px -14px rgba(160, 92, 0, 0.95);
}

#loginSubmit:disabled {
    background: #f6c15f;
    border-color: #e6b155;
    color: #5f5033;
    box-shadow: none;
    opacity: 1;
}

.btn-login:hover {
    transform: translateY(-1px);
    filter: brightness(1.03);
}

.btn-login:disabled {
    opacity: 0.72;
    cursor: not-allowed;
    transform: none;
}

.form-message {
    min-height: 20px;
    margin-top: 0;
    font-size: 0.9rem;
    line-height: 1.35;
    color: #6c7280;
    display: none;
    text-align: center;
}

.form-message.is-error {
    color: var(--danger);
}

.form-message.is-success {
    color: #198f5d;
}

.form-message a {
    color: #3e5f95;
    font-weight: 700;
}

.signup-cta {
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px solid #dbe2ec;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #5a6272;
    font-size: 0.93rem;
    font-weight: 600;
}

.signup-cta-label {
    color: #626b7b;
}

.signup-cta-link {
    color: #111319;
    text-decoration: none;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s ease, transform 0.2s ease;
}

.signup-cta-link i {
    font-size: 0.72rem;
    transition: transform 0.2s ease;
}

.signup-cta-link:hover {
    color: #ce8308;
    transform: translateY(-1px);
}

.signup-cta-link:hover i {
    transform: translateX(2px);
}

.plans-card {
    margin-top: 14px;
    padding: 14px;
    border-radius: 16px;
    border: 1px solid #efc36c;
    background: linear-gradient(165deg, #fff8e9 0%, #ffeec3 56%, #ffe3a3 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 252, 242, 0.92),
        0 16px 30px -26px rgba(156, 89, 0, 0.58);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    animation: elementRise 0.5s ease both;
    animation-delay: 0.28s;
}

.plans-card:hover {
    transform: translateY(-2px);
    border-color: #e6b557;
    box-shadow:
        inset 0 1px 0 rgba(255, 252, 242, 0.92),
        0 20px 34px -26px rgba(156, 89, 0, 0.66);
}

.plans-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.plans-kicker {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 11px;
    border-radius: 999px;
    background: rgba(181, 109, 0, 0.14);
    color: #995d00;
    font-size: 0.73rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.plans-kicker i {
    font-size: 0.72rem;
}

.plans-link {
    color: #8b5a00;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.46);
    border: 1px solid rgba(207, 150, 38, 0.44);
    transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.plans-link:hover {
    color: #734700;
    background: rgba(255, 255, 255, 0.72);
    transform: translateY(-1px);
}

.plans-link i {
    font-size: 0.68rem;
}

.plans-copy {
    margin-top: 10px;
    color: #6f4f17;
    font-size: 0.85rem;
    line-height: 1.4;
}

.plans-grid {
    margin-top: 10px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
}

.plan-item {
    position: relative;
    padding: 10px 10px 9px;
    border-radius: 12px;
    border: 1px solid #e8bf6f;
    background: rgba(255, 255, 255, 0.5);
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.plan-item::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(224, 168, 65, 0.72), rgba(224, 168, 65, 0));
    opacity: 0.8;
}

.plan-item:hover {
    transform: translateY(-2px);
    border-color: #d8a84d;
    box-shadow: 0 12px 22px -20px rgba(153, 88, 0, 0.68);
}

.plan-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 8px;
}

.plan-item h3 {
    color: #433014;
    font-size: 0.86rem;
    line-height: 1.1;
    font-weight: 800;
}

.plan-price {
    color: #8b5800;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.plan-price span {
    color: #9f7a3e;
    font-size: 0.68rem;
    font-weight: 700;
    margin-left: 1px;
}

.plan-item p {
    margin-top: 4px;
    color: #6f562c;
    font-size: 0.73rem;
    line-height: 1.34;
}

.plan-points {
    margin-top: 7px;
    list-style: none;
    display: grid;
    gap: 4px;
    padding: 0;
}

.plan-points li {
    color: #6e5224;
    font-size: 0.7rem;
    line-height: 1.25;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.plan-points i {
    color: #bb7800;
    font-size: 0.66rem;
}

.plan-item-featured {
    border-color: #d8961b;
    background: linear-gradient(170deg, #ffe8a3 0%, #ffd674 100%);
    box-shadow:
        0 12px 22px -18px rgba(198, 121, 0, 0.82),
        inset 0 1px 0 rgba(255, 244, 201, 0.9);
}

.plan-item-featured:hover {
    border-color: #c9860f;
    box-shadow:
        0 14px 26px -20px rgba(180, 108, 0, 0.9),
        inset 0 1px 0 rgba(255, 244, 201, 0.9);
}

.plan-item-featured h3 {
    color: #6d4100;
}

.plan-item-featured .plan-price {
    color: #724500;
}

.plan-item-featured .plan-price span {
    color: #8a6323;
}

.plan-item-featured .plan-points li {
    color: #6f4a11;
}

.plan-item-featured .plan-points i {
    color: #a96b00;
}

.plan-item-featured::before {
    background: linear-gradient(90deg, rgba(188, 118, 0, 0.9), rgba(188, 118, 0, 0.22));
    opacity: 1;
}

.plan-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    padding: 2px 7px;
    border-radius: 999px;
    background: rgba(134, 81, 0, 0.14);
    color: #7a4900;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.form-footnote {
    display: none;
}

.forgot-panel {
    min-height: calc(100dvh - 36px);
    padding: 48px 42px 30px;
}

.forgot-panel h2 {
    color: var(--text-dark);
    font-size: 2rem;
    line-height: 1.04;
    letter-spacing: -0.03em;
    font-weight: 800;
}

.forgot-panel p {
    margin-top: 10px;
    color: #545b67;
    font-size: 1rem;
    line-height: 1.4;
}

.forgot-form {
    margin-top: 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.forgot-form .input-box input {
    padding-left: 50px;
}

.btn-secondary {
    margin-top: 2px;
    border: 1.5px solid var(--line-strong);
    background: #f5f7fb;
    color: #21283a;
}

.fade-out {
    animation: fadeOut 0.26s ease forwards;
}

.fade-in {
    animation: fadeIn 0.26s ease forwards;
}

@keyframes panelSlideIn {
    from {
        opacity: 0;
        transform: translateX(24px);
    }

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

@keyframes elementRise {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

@keyframes fadeOut {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 0;
        transform: translateY(4px);
    }
}

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

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

@media (max-width: 1240px) {
    .panel-content {
        padding: 44px 34px 28px;
    }

    .hero-copy h2 {
        font-size: clamp(1.86rem, 4.1vw, 3.2rem);
    }

    .hero-copy p {
        font-size: 0.95rem;
    }
}

@media (max-width: 1060px) {
    body.login-body {
        padding: 0;
        overflow: auto;
    }

    .login-shell {
        width: 100%;
        min-height: 100vh;
        height: auto;
        grid-template-columns: 1fr;
        gap: 0;
        padding: 16px 12px 20px;
    }

    .hero-panel {
        min-height: 320px;
        margin: 0;
    }

    .hero-topbar {
        top: 20px;
        left: 20px;
        right: 20px;
    }

    .hero-brand {
        font-size: 1.6rem;
    }

    .hero-brand-logo {
        width: 130px;
    }

    .hero-back {
        position: static;
        font-size: 0.82rem;
        margin-left: auto;
    }

    .hero-copy {
        left: 20px;
        right: 20px;
        bottom: 18px;
    }

    .hero-copy h2 {
        font-size: clamp(1.65rem, 7.8vw, 2.24rem);
    }

    .hero-copy p {
        margin-top: 10px;
        font-size: 0.93rem;
    }

    .hero-indicator {
        margin-top: 12px;
    }

    .form-panel {
        padding: 12px 0 0;
    }

    .panel-content,
    .forgot-panel {
        border-radius: 14px;
    }

    .panel-content {
        min-height: auto;
        padding: 28px 22px 20px;
    }

    .forgot-panel {
        min-height: auto;
    }

    .panel-content h1 {
        font-size: clamp(1.78rem, 8vw, 2.46rem);
    }

    .welcome-text {
        margin-top: 10px;
        font-size: 0.95rem;
    }

    .login-form {
        margin-top: 18px;
        gap: 12px;
    }

    .input-box,
    .input-box input {
        border-radius: 14px;
    }

    .input-box input {
        height: 50px;
        padding: 0 52px 0 46px;
        font-size: 0.92rem;
    }

    .input-box-password input {
        padding-right: 54px;
    }

    .forgot-form .input-box input {
        padding-left: 46px;
    }

    .input-icon {
        left: 14px;
        font-size: 0.92rem;
    }

    .toggle-password {
        right: 10px;
        width: 28px;
        height: 28px;
    }

    .toggle-password i {
        font-size: 0.94rem;
    }

    .btn-login,
    .btn-secondary {
        height: 48px;
    }

    #loginSubmit {
        height: 50px;
        border-radius: 9px;
        font-size: 0.94rem;
    }

    .remember-row {
        margin-top: 0;
    }

    .remember-check,
    .remember-row a,
    .signup-cta {
        font-size: 0.9rem;
    }

    .signup-cta {
        gap: 6px;
    }

    .check-ui {
        width: 20px;
        height: 20px;
        border-radius: 6px;
    }

    .plans-card {
        margin-top: 12px;
        padding: 12px;
        border-radius: 12px;
    }

    .plans-kicker {
        font-size: 0.7rem;
        padding: 4px 9px;
    }

    .plans-link {
        font-size: 0.77rem;
        padding: 3px 9px;
        gap: 5px;
    }

    .plans-copy {
        font-size: 0.82rem;
    }

    .plans-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 7px;
    }

    .plan-item-featured {
        grid-column: 1 / -1;
    }

    .plan-item {
        padding: 9px;
    }

    .plan-item h3 {
        font-size: 0.82rem;
    }

    .plan-price {
        font-size: 0.78rem;
    }

    .plan-price span {
        font-size: 0.66rem;
    }

    .plan-item p {
        font-size: 0.72rem;
    }

    .plan-points li {
        font-size: 0.68rem;
    }

}

@media (max-width: 620px) {
    .hero-topbar {
        flex-direction: row;
        align-items: center;
        gap: 10px;
    }

    .hero-brand {
        font-size: 1.42rem;
    }

    .hero-brand-logo {
        width: 118px;
    }

    .hero-back {
        margin-left: 0;
        font-size: 0.78rem;
    }

    .panel-content {
        padding: 24px 16px 18px;
    }

    .input-box,
    .input-box input {
        border-radius: 13px;
    }

    .input-box input {
        height: 46px;
        padding: 0 44px 0 40px;
        font-size: 0.88rem;
    }

    .input-box-password input {
        padding-right: 48px;
    }

    .forgot-form .input-box input {
        padding-left: 40px;
    }

    .input-icon {
        left: 12px;
        font-size: 0.84rem;
    }

    .toggle-password {
        right: 8px;
        width: 26px;
        height: 26px;
    }

    #loginSubmit {
        height: 46px;
        border-radius: 8px;
        font-size: 0.9rem;
    }

    .remember-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .check-ui {
        width: 18px;
        height: 18px;
        border-radius: 5px;
    }

    .signup-cta {
        margin-top: 12px;
        padding-top: 10px;
        flex-wrap: wrap;
        gap: 4px 6px;
        font-size: 0.86rem;
    }

    .signup-cta-link i {
        font-size: 0.66rem;
    }

    .plans-card {
        margin-top: 10px;
        padding: 10px;
        border-radius: 10px;
    }

    .plans-top {
        flex-wrap: wrap;
        gap: 6px;
    }

    .plans-kicker {
        font-size: 0.68rem;
        padding: 3px 8px;
    }

    .plans-link {
        font-size: 0.76rem;
        padding: 3px 8px;
    }

    .plans-copy {
        margin-top: 8px;
        font-size: 0.78rem;
        line-height: 1.35;
    }

    .plans-grid {
        margin-top: 8px;
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .plan-item-featured {
        grid-column: auto;
    }

    .plan-item {
        padding: 8px;
    }

    .plan-item h3 {
        font-size: 0.8rem;
    }

    .plan-price {
        font-size: 0.75rem;
    }

    .plan-price span {
        font-size: 0.64rem;
    }

    .plan-item p {
        font-size: 0.71rem;
    }

    .plan-points {
        margin-top: 6px;
        gap: 3px;
    }

    .plan-points li {
        font-size: 0.67rem;
    }

    .plan-badge {
        top: 7px;
        right: 7px;
        font-size: 0.58rem;
        padding: 2px 6px;
    }

    .forgot-panel {
        padding: 24px 16px 18px;
    }

    .forgot-panel h2 {
        font-size: 1.66rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }
}

/* Registro integrado + animacao lateral entre texto/card */
.login-shell {
    overflow: hidden;
}

.hero-panel,
.form-panel {
    will-change: transform;
    transition: transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
}

.login-shell.is-register-mode .hero-panel {
    transform: translateX(calc(81.82% + 12px));
}

.login-shell.is-register-mode .form-panel {
    transform: translateX(calc(-122.22% - 12px));
}

.hero-copy {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.34s ease, transform 0.44s ease;
}

.hero-copy-register {
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
}

.login-shell.is-register-mode .hero-copy-login {
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
}

.login-shell.is-register-mode .hero-copy-register {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.register-panel {
    width: min(900px, 100%);
    border-radius: 18px;
    border: 1px solid rgba(219, 224, 233, 0.92);
    background: linear-gradient(180deg, #fcfcfd 0%, #f7f8fb 100%);
    box-shadow:
        0 18px 38px rgba(4, 11, 24, 0.24),
        0 2px 0 rgba(255, 255, 255, 0.85) inset;
    margin-right: 10px;
    overflow: hidden;
    min-height: calc(100dvh - 36px);
    animation: panelSlideIn 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.register-header {
    background: linear-gradient(180deg, #12376a 0%, #0e2d58 100%);
    color: #f3f8ff;
    padding: 18px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.register-header h2 {
    margin: 0;
    font-size: clamp(1.3rem, 2.1vw, 1.9rem);
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.02em;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.register-header p {
    margin-top: 8px;
    color: rgba(236, 244, 255, 0.86);
    font-size: 0.9rem;
    line-height: 1.35;
    font-weight: 600;
}

.register-form {
    padding: 16px 24px 14px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.register-progress {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.register-progress-item {
    border-radius: 10px;
    border: 1px solid #d2dae7;
    background: #f5f8fc;
    color: #657087;
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1.2;
    padding: 9px 10px;
    transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.register-progress-item.is-active {
    border-color: #f0a313;
    background: rgba(253, 169, 23, 0.13);
    color: #8d5600;
}

.register-step {
    display: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 12px;
}

.register-step.is-active {
    display: grid;
    animation: fadeIn 0.2s ease both;
}

.input-group.full {
    grid-column: 1 / -1;
}

.register-panel .input-group {
    gap: 6px;
}

.register-panel .input-label {
    font-size: 0.82rem;
    font-weight: 800;
    color: #293345;
    text-transform: none;
}

.register-panel .input-box {
    border-radius: 12px;
}

.register-panel .input-box input,
.register-panel .input-box select {
    height: 44px;
    border-radius: 12px;
    border: 0;
    background: transparent;
    color: #2d3544;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1;
    width: 100%;
    padding: 0 48px 0 44px;
    appearance: none;
}

.register-panel .input-box select {
    cursor: pointer;
}

.register-panel .input-box select:focus,
.register-panel .input-box input:focus {
    outline: none;
    color: var(--focus-yellow-text);
}

.register-panel .input-box-select::after {
    content: "\f078";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: 50%;
    right: 14px;
    transform: translateY(-50%);
    font-size: 0.76rem;
    color: #8f99aa;
    pointer-events: none;
    z-index: 2;
}

.register-panel .input-box input[readonly] {
    color: #5f697a;
    background: linear-gradient(180deg, #edf1f6 0%, #e8edf3 100%);
}

.register-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.register-actions .btn-secondary,
.register-actions .btn-login {
    width: auto;
    min-width: 142px;
    height: 46px;
    border-radius: 10px;
    font-size: 0.9rem;
}

.register-actions .btn-secondary {
    margin-top: 0;
}

.register-actions #registerNextStep,
.register-actions #registerSubmit {
    margin-top: 0;
    border-radius: 10px;
    border: 1px solid #dc8f03;
    background: #f7a81a;
    color: #101828;
    font-size: 0.93rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0;
    text-align: center;
    box-shadow:
        0 1px 0 rgba(255, 240, 200, 0.8) inset,
        0 14px 24px -20px rgba(221, 133, 5, 0.95);
}

.register-actions #registerNextStep:hover,
.register-actions #registerSubmit:hover {
    background: #f9b12a;
}

.register-actions #registerNextStep:disabled,
.register-actions #registerSubmit:disabled {
    background: #f6c15f;
    border-color: #e6b155;
    color: #5f5033;
    box-shadow: none;
}

.register-panel .form-message {
    margin-top: 0;
    text-align: left;
    min-height: 18px;
}

.register-login-cta {
    margin: 0 24px 14px;
    padding-top: 10px;
}

@media (max-width: 1060px) {
    .hero-panel,
    .form-panel {
        transition-duration: 0.46s;
    }

    .login-shell.is-register-mode .hero-panel,
    .login-shell.is-register-mode .form-panel {
        transform: none;
    }

    .login-shell.is-register-mode .hero-panel {
        order: 2;
    }

    .login-shell.is-register-mode .form-panel {
        order: 1;
    }

    .register-panel {
        margin-right: 0;
        min-height: auto;
        border-radius: 14px;
    }

    .register-header {
        padding: 14px 16px;
    }

    .register-form {
        padding: 12px 16px;
        gap: 12px;
    }

    .register-progress-item {
        font-size: 0.78rem;
        padding: 8px 9px;
    }

    .register-step {
        gap: 10px;
    }

    .register-panel .input-box input,
    .register-panel .input-box select {
        height: 42px;
        padding: 0 44px 0 40px;
        font-size: 0.86rem;
    }

    .register-panel .input-label {
        font-size: 0.78rem;
    }

    .register-actions {
        gap: 8px;
    }

    .register-actions .btn-secondary,
    .register-actions .btn-login {
        height: 42px;
        min-width: 124px;
    }

    .register-login-cta {
        margin: 0 16px 12px;
    }
}

@media (max-width: 620px) {
    .register-header h2 {
        font-size: 1.2rem;
    }

    .register-header p {
        font-size: 0.8rem;
    }

    .register-progress {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .register-step {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .register-panel .input-box input,
    .register-panel .input-box select {
        height: 40px;
        padding: 0 40px 0 36px;
        font-size: 0.82rem;
    }

    .register-panel .input-icon {
        left: 10px;
        font-size: 0.8rem;
    }

    .register-actions {
        flex-wrap: wrap;
    }

    .register-actions .btn-secondary,
    .register-actions .btn-login {
        width: 100%;
        min-width: 0;
    }
}

/* Ajustes finais: cadastro com mesma identidade do login + alinhamento a direita */
.register-panel {
    position: relative;
}

.register-panel::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 120px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0));
    pointer-events: none;
}

.register-header {
    position: relative;
    z-index: 1;
    background: transparent;
    border-bottom: 0;
    padding: 75px 36px 8px;
    text-align: right;
}

.register-header h2 {
    color: #111319;
    font-size: clamp(1.9rem, 2.8vw, 2.8rem);
    line-height: 1.04;
    letter-spacing: -0.03em;
    font-weight: 800;
    text-shadow: 0 1px 0 rgba(255, 235, 198, 0.55);
    justify-content: flex-end;
}

.register-header p {
    margin-top: 10px;
    color: #2f5fa0;
    font-size: 0.92rem;
    line-height: 1.45;
    font-weight: 600;
}

.register-form {
    position: relative;
    z-index: 1;
    padding: 10px 36px 18px;
    align-items: flex-end;
    text-align: right;
}

.register-form > * {
    width: 100%;
}

.register-progress-item {
    text-align: right;
    border-color: #bcc6d4;
    background: linear-gradient(180deg, #f5f7fa 0%, #eef2f7 100%);
}

.register-progress-item.is-active {
    border-color: #f0a313;
    background: rgba(253, 169, 23, 0.16);
}

.register-panel .input-group {
    gap: 8px;
    text-align: right;
}

.register-panel .input-label {
    color: #2b3241;
    font-size: 0.95rem;
    font-weight: 700;
    text-align: right;
}

.register-panel .input-box {
    border-radius: 16px;
}

.register-panel .input-box input,
.register-panel .input-box select {
    height: 52px;
    border-radius: 16px;
    font-size: 0.95rem;
    padding: 0 56px 0 50px;
    text-align: left;
}

.register-panel .input-box-select::after {
    right: 18px;
    color: #9ba5b3;
}

.register-panel .form-message {
    text-align: right;
}

.register-login-cta {
    margin: 0 36px 18px;
    justify-content: flex-end;
    text-align: right;
}

@media (max-width: 1060px) {
    .register-header {
        padding: 26px 22px 8px;
    }

    .register-form {
        padding: 10px 22px 16px;
    }

    .register-panel .input-box input,
    .register-panel .input-box select {
        height: 50px;
        border-radius: 14px;
        padding: 0 52px 0 46px;
        font-size: 0.92rem;
    }

    .register-panel .input-label {
        font-size: 0.9rem;
    }

    .register-login-cta {
        margin: 0 22px 14px;
    }
}

@media (max-width: 620px) {
    .register-header {
        padding: 22px 16px 6px;
    }

    .register-header h2 {
        font-size: clamp(1.78rem, 8vw, 2.46rem);
    }

    .register-form {
        padding: 8px 16px 14px;
    }

    .register-panel .input-box input,
    .register-panel .input-box select {
        height: 46px;
        border-radius: 13px;
        padding: 0 44px 0 40px;
        font-size: 0.88rem;
    }

    .register-panel .input-label {
        font-size: 0.88rem;
    }

    .register-login-cta {
        margin: 0 16px 12px;
    }
}

/* Refino cadastro v2: dots, grid organizado e CTA principal */
.register-form {
    gap: 16px;
}

.register-step {
    gap: 14px 16px;
    align-items: end;
}

.register-step .input-group.full {
    grid-column: 1 / -1;
}

.register-progress.register-progress-dots {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    padding: 2px 0 4px;
}

.register-progress-dot {
    width: 14px;
    height: 14px;
    border-radius: 999px;
    border: 2px solid #bcc6d4;
    background: linear-gradient(180deg, #f5f7fa 0%, #eef2f7 100%);
    position: relative;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.92),
        0 8px 14px -12px rgba(20, 31, 48, 0.7);
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.register-progress-dot::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: #f5a30f;
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 0;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.register-progress-dot.is-active {
    border-color: #f0a313;
    transform: scale(1.05);
    box-shadow:
        inset 0 1px 0 rgba(255, 252, 242, 0.94),
        0 0 0 4px rgba(253, 169, 23, 0.18),
        0 10px 18px -14px rgba(184, 113, 4, 0.9);
}

.register-progress-dot.is-active::after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.register-actions {
    margin-top: 2px;
}

.register-actions #registerNextStep,
.register-actions #registerSubmit {
    min-width: 188px;
    height: 52px;
    border-radius: 12px;
    padding: 0 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1rem;
    letter-spacing: -0.01em;
    background: linear-gradient(180deg, #fcb62f 0%, #f5a30f 100%);
    border: 1px solid #dc8f03;
    box-shadow:
        0 1px 0 rgba(255, 240, 200, 0.82) inset,
        0 16px 26px -20px rgba(221, 133, 5, 0.98);
    transition: transform 0.18s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.register-actions #registerNextStep i,
.register-actions #registerSubmit i {
    font-size: 0.86rem;
    transition: transform 0.18s ease;
}

.register-actions #registerNextStep:hover,
.register-actions #registerSubmit:hover {
    background: linear-gradient(180deg, #fdbc3f 0%, #f6ab19 100%);
    transform: translateY(-1px);
    box-shadow:
        0 1px 0 rgba(255, 240, 200, 0.84) inset,
        0 18px 30px -20px rgba(221, 133, 5, 1);
}

.register-actions #registerNextStep:hover i,
.register-actions #registerSubmit:hover i {
    transform: translateX(2px);
}

.register-actions #registerNextStep:active,
.register-actions #registerSubmit:active {
    transform: translateY(1px);
    box-shadow:
        0 1px 0 rgba(250, 220, 157, 0.68) inset,
        0 8px 16px -14px rgba(160, 92, 0, 0.95);
}

@media (max-width: 1060px) {
    .register-step {
        gap: 12px;
    }

    .register-actions #registerNextStep,
    .register-actions #registerSubmit {
        min-width: 160px;
        height: 48px;
        font-size: 0.94rem;
    }
}

@media (max-width: 620px) {
    .register-progress.register-progress-dots {
        justify-content: center;
    }

    .register-step {
        gap: 10px;
    }

    .register-actions #registerNextStep,
    .register-actions #registerSubmit {
        min-width: 0;
        width: 100%;
        height: 46px;
        font-size: 0.9rem;
    }
}

/* Ajuste solicitado: topo do cadastro alinhado a esquerda */
.register-header {
    text-align: left;
}

.register-header h2 {
    justify-content: flex-start;
}

.register-header p {
    text-align: left;
}

.register-progress.register-progress-dots {
    justify-content: flex-start;
}

@media (max-width: 620px) {
    .register-progress.register-progress-dots {
        justify-content: flex-start;
    }
}

/* Ajuste solicitado: CTA inferior do cadastro centralizado */
.register-login-cta {
    justify-content: center;
    text-align: center;
}

/* Ajuste solicitado: botao Continuar ocupando todo o campo */
.register-actions #registerNextStep {
    width: 100%;
    min-width: 0;
    max-width: none;
}

/* Ajuste solicitado: etapa 2 com dois botoes em 50/50 + voltar melhorado */
.register-actions {
    gap: 12px;
    align-items: stretch;
}

.register-actions #registerBackStep,
.register-actions #registerSubmit {
    flex: 1 1 50%;
    width: 50%;
    min-width: 0;
}

.register-actions #registerBackStep {
    height: 52px;
    border-radius: 12px;
    border: 1.5px solid #bcc6d4;
    background: linear-gradient(180deg, #f8fafd 0%, #eef3f8 100%);
    color: #2b3446;
    font-size: 0.98rem;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.94),
        0 12px 22px -20px rgba(15, 27, 46, 0.8);
    transition: transform 0.18s ease, border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.register-actions #registerBackStep::before {
    content: "\f053";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 0.72rem;
    opacity: 0.82;
}

.register-actions #registerBackStep:hover {
    border-color: #aeb9c9;
    color: #1f293b;
    transform: translateY(-1px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.95),
        0 16px 26px -20px rgba(15, 27, 46, 0.92);
}

.register-actions #registerBackStep:active {
    transform: translateY(1px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        0 8px 14px -12px rgba(15, 27, 46, 0.85);
}

/* Tela de esqueci senha com a mesma identidade visual do login */
.forgot-panel {
    position: relative;
    overflow: hidden;
    min-height: calc(100dvh - 36px);
    padding: 44px 46px 34px;
    animation: panelSlideIn 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.forgot-panel::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 120px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0));
    pointer-events: none;
}

.forgot-panel > * {
    position: relative;
    z-index: 1;
}

.forgot-panel h1 {
    color: #111319;
    font-size: clamp(1.9rem, 2.8vw, 2.8rem);
    line-height: 1.04;
    letter-spacing: -0.03em;
    font-weight: 800;
    text-shadow: 0 1px 0 rgba(255, 235, 198, 0.55);
}

.forgot-intro {
    margin-top: 10px;
    color: #2f5fa0;
    font-size: 0.92rem;
    line-height: 1.45;
    font-weight: 600;
    max-width: 560px;
}

.forgot-form {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.forgot-form .input-group {
    gap: 8px;
}

.forgot-form .input-label {
    color: #2b3241;
    font-size: 0.95rem;
    font-weight: 700;
}

.forgot-form .input-box input {
    padding-left: 50px;
}

.forgot-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 2px;
}

#forgotSubmit {
    height: 52px;
    border-radius: 10px;
    border: 1px solid #dc8f03;
    background: #f7a81a;
    color: #101828;
    font-size: 0.97rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0;
    text-align: center;
    filter: none;
    box-shadow:
        0 1px 0 rgba(255, 240, 200, 0.8) inset,
        0 14px 24px -20px rgba(221, 133, 5, 0.95);
    transition: transform 0.16s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

#forgotSubmit:hover {
    background: #f9b12a;
    transform: translateY(-1px);
    box-shadow:
        0 1px 0 rgba(255, 240, 200, 0.82) inset,
        0 16px 28px -20px rgba(221, 133, 5, 1);
}

#forgotSubmit:focus-visible {
    outline: none;
    box-shadow:
        0 0 0 4px rgba(247, 174, 42, 0.34),
        0 1px 0 rgba(255, 240, 200, 0.82) inset,
        0 16px 28px -20px rgba(221, 133, 5, 1);
}

#forgotSubmit:active {
    transform: translateY(1px);
    background: #e79a10;
    box-shadow:
        0 1px 0 rgba(250, 220, 157, 0.68) inset,
        0 8px 16px -14px rgba(160, 92, 0, 0.95);
}

.forgot-panel .form-message {
    text-align: left;
    min-height: 20px;
}

.forgot-cta {
    margin-top: 16px;
    justify-content: center;
    text-align: center;
}

@media (max-width: 1060px) {
    .forgot-panel {
        min-height: auto;
        padding: 28px 22px 20px;
    }

    .forgot-panel h1 {
        font-size: clamp(1.78rem, 8vw, 2.46rem);
    }

    .forgot-intro {
        font-size: 0.95rem;
    }

    .forgot-form {
        margin-top: 18px;
    }

    .forgot-form .input-box input {
        padding-left: 46px;
    }

    #forgotSubmit {
        height: 50px;
        border-radius: 9px;
        font-size: 0.94rem;
    }
}

@media (max-width: 620px) {
    .forgot-panel {
        padding: 24px 16px 18px;
    }

    .forgot-form .input-box input {
        padding-left: 40px;
    }

    #forgotSubmit {
        height: 46px;
        border-radius: 8px;
        font-size: 0.9rem;
    }
}
