* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background: radial-gradient(circle at top right, #f97316 0, #0f172a 45%, #020617 100%);
    color: #e5e7eb;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    flex: 1;
    display: flex;
    flex-direction: column;
}

main.content {
    flex: 1;
}

/* ÜST BAR */
.topbar {
    padding: 14px 30px;
    background: rgba(15, 23, 42, 0.96);
    border-bottom: 1px solid rgba(148, 163, 184, 0.4);
    backdrop-filter: blur(8px);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    background: #f97316;
    color: #fff7ed;
    padding: 6px 10px;
    border-radius: 10px;
    font-weight: bold;
    font-size: 14px;
}

.logo-texts {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-size: 16px;
    font-weight: bold;
}

.logo-subtitle {
    font-size: 11px;
    color: #9ca3af;
}

/* ANA LAYOUT */
.main {
    max-width: 1150px;
    margin: 26px auto 0 auto;
    padding: 0 22px 30px;
}

.wrapper {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(340px, 2.4fr);
    gap: 26px;
}

.register-page .wrapper {
    position: relative;
    grid-template-columns: minmax(0, 2.8fr) minmax(320px, 2fr);
    gap: 34px;
}

.register-page .wrapper::before {
    content: "";
    position: absolute;
    inset: -30px -20px;
    background: radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.25), transparent 45%),
        radial-gradient(circle at 80% 10%, rgba(249, 115, 22, 0.25), transparent 40%);
    opacity: 0.9;
    pointer-events: none;
    z-index: 0;
}

.register-page .left-info,
.register-page .right-login {
    position: relative;
    z-index: 1;
}

.register-page .left-info {
    padding: 28px 26px;
    border-radius: 24px;
    background: linear-gradient(160deg, rgba(2, 6, 23, 0.95), rgba(30, 41, 59, 0.7));
    border: 1px solid rgba(148, 163, 184, 0.35);
    box-shadow: 0 30px 60px rgba(2, 6, 23, 0.7);
    overflow: hidden;
}

.register-page .left-info::before {
    content: "";
    position: absolute;
    inset: -30% -10% auto auto;
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.35), transparent 70%);
    opacity: 0.8;
}

.register-page .left-info::after {
    content: "";
    position: absolute;
    inset: auto auto -40% -20%;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.35), transparent 70%);
    opacity: 0.7;
}

.hero-band {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.register-page .badge,
.register-page .hero-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 26px;
    padding: 0 12px;
    line-height: 1;
}

.hero-chip {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.3px;
    padding: 4px 10px;
    border-radius: 999px;
    color: #e0f2fe;
    background: rgba(14, 116, 144, 0.3);
    border: 1px solid rgba(56, 189, 248, 0.4);
}

.feature-list {
    display: grid;
    gap: 12px;
    margin: 16px 0 18px;
}

.feature-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(2, 6, 23, 0.6);
    border: 1px solid rgba(148, 163, 184, 0.3);
}

.feature-index {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
    color: #111827;
    background: linear-gradient(135deg, #f97316, #facc15);
    box-shadow: 0 8px 16px rgba(249, 115, 22, 0.35);
}

.feature-title {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 4px;
}

.feature-desc {
    font-size: 11px;
    color: #cbd5f5;
}

.metric-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 12px;
}

.metric-card {
    border-radius: 14px;
    padding: 10px 12px;
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(148, 163, 184, 0.35);
    text-align: center;
}

.metric-value {
    font-size: 13px;
    font-weight: 800;
    color: #f97316;
}

.metric-label {
    font-size: 10px;
    color: #e2e8f0;
}

.register-page .trust-row {
    margin: 6px 0 10px;
}

.register-page .trust-pill {
    background: rgba(15, 23, 42, 0.75);
    border: 1px solid rgba(251, 146, 60, 0.4);
    color: #ffe4d5;
}

.register-page .login-card {
    position: relative;
    border-radius: 22px;
    padding: 18px 18px 16px;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.98), rgba(2, 6, 23, 0.95));
    border: 1px solid rgba(148, 163, 184, 0.4);
    box-shadow: 0 28px 60px rgba(2, 6, 23, 0.75);
}

.register-page .login-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, #60a5fa, #f97316);
}

.payment-page .login-card::before {
    display: none;
}

.register-no-line .login-card::before {
    display: none;
}

.register-page .btn-main {
    background: linear-gradient(90deg, #2563eb, #f97316);
    border-color: rgba(249, 115, 22, 0.7);
    box-shadow: 0 12px 26px rgba(37, 99, 235, 0.35), 0 10px 24px rgba(249, 115, 22, 0.35);
}

.register-page .btn-main:hover {
    filter: brightness(1.06);
}

/* SOL BİLGİ ALANI */
.left-info {
    padding: 22px 20px;
    border-radius: 18px;
    background: linear-gradient(to bottom right, rgba(15,23,42,0.95), rgba(15,23,42,0.7));
    border: 1px solid rgba(148, 163, 184, 0.5);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.7);
}

.left-info {
    position: relative;
    overflow: hidden;
}

.left-info::before {
    content: "";
    position: absolute;
    inset: -40% 40% auto -20%;
    height: 180px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.35), transparent 70%);
    opacity: 0.7;
}

.left-info::after {
    content: "";
    position: absolute;
    inset: auto -10% -30% 30%;
    height: 220px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.35), transparent 70%);
    opacity: 0.6;
}

.promo-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 14px 0 10px;
}

.promo-card {
    background: rgba(2, 6, 23, 0.6);
    border: 1px solid rgba(148, 163, 184, 0.35);
    border-radius: 12px;
    padding: 10px 12px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.promo-title {
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 4px;
    color: #f8fafc;
}

.promo-text {
    font-size: 11px;
    color: #cbd5f5;
}

.stat-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 10px 0 8px;
}

.stat {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.65);
    border: 1px dashed rgba(148, 163, 184, 0.5);
}

.stat-value {
    font-size: 12px;
    font-weight: 700;
    color: #f97316;
}

.stat-label {
    font-size: 11px;
    color: #e2e8f0;
}

.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 6px;
}

.trust-pill {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2px;
    padding: 4px 10px;
    border-radius: 999px;
    color: #c7d2fe;
    background: rgba(30, 41, 59, 0.65);
    border: 1px solid rgba(99, 102, 241, 0.35);
}

.badge {
    display: inline-block;
    font-size: 11px;
    padding: 4px 9px;
    border-radius: 999px;
    background: rgba(248, 113, 113, 0.15);
    border: 1px solid rgba(248, 113, 113, 0.7);
    color: #fed7d7;
    margin-bottom: 10px;
}

.left-info h1 {
    font-size: 22px;
    line-height: 1.4;
    margin-bottom: 10px;
}

.text {
    font-size: 13px;
    color: #e5e7eb;
    margin-bottom: 12px;
}

.text strong {
    color: #f9fafb;
}

.list {
    list-style: none;
    font-size: 13px;
    color: #e5e7eb;
    margin-bottom: 10px;
}

.list li {
    margin-bottom: 4px;
}

.list li::before {
    content: "•";
    color: #f97316;
    margin-right: 6px;
}

.hint {
    font-size: 11px;
    color: #9ca3af;
}

/* SAĞ TARAF: TEK FORM */
.right-login {
    display: flex;
    align-items: stretch;
}

.login-card {
    background: rgba(15,23,42,0.96);
    border-radius: 16px;
    padding: 16px 16px 14px;
    border: 1px solid rgba(148, 163, 184, 0.5);
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.9);
    width: 100%;
}

.login-card h2 {
    font-size: 17px;
    margin-bottom: 4px;
}

.login-card .info {
    font-size: 12px;
    color: #9ca3af;
    margin-bottom: 10px;
}

/* FORM ELEMANLARI */
.form-group {
    margin-bottom: 8px;
}

label {
    display: block;
    font-size: 12px;
    margin-bottom: 3px;
}

input,
select {
    width: 100%;
    padding: 8px 10px;
    border-radius: 8px;
    border: 1px solid #4b5563;
    background: #020617;
    color: #e5e7eb;
    font-size: 13px;
}

input::placeholder {
    color: #6b7280;
}

/* BUTON */
.btn {
    display: inline-block;
    width: 100%;
    text-align: center;
    margin-top: 8px;
    padding: 9px 10px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid transparent;
    cursor: pointer;
}

.btn-main {
    background: linear-gradient(to right, #3b82f6, #f97316);
    border-color: #ea580c;
    color: #f9fafb;
}

.btn:hover {
    filter: brightness(1.05);
}

/* ALT AÇIKLAMA */
.tip {
    margin-top: 8px;
    font-size: 11px;
    color: #9ca3af;
}

.tip-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-left: 6px;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.2px;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.tip-link:focus-visible {
    outline: 2px solid rgba(59, 130, 246, 0.8);
    outline-offset: 2px;
}

.tip-primary {
    color: #0f172a;
    background: linear-gradient(135deg, #22c55e 0%, #14b8a6 100%);
    box-shadow: 0 8px 18px rgba(16, 185, 129, 0.35);
}

.tip-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 22px rgba(16, 185, 129, 0.45);
}

.tip-ghost {
    color: #e2e8f0;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(148, 163, 184, 0.6);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.tip-ghost:hover {
    transform: translateY(-1px);
    border-color: rgba(251, 146, 60, 0.8);
    color: #fff7ed;
    box-shadow: 0 10px 18px rgba(249, 115, 22, 0.25);
}

/* Şifre güç göstergesi */
.password-meter {
    margin-top: 6px;
    height: 6px;
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.2);
    overflow: hidden;
}

.password-meter-fill {
    display: block;
    height: 100%;
    width: 0%;
    border-radius: 999px;
    transition: width 0.18s ease, background 0.18s ease;
    background: rgba(148, 163, 184, 0.35);
}

.password-meter-fill.strength-1 {
    background: #ef4444;
}

.password-meter-fill.strength-2 {
    background: #f97316;
}

.password-meter-fill.strength-3 {
    background: #22c55e;
}

.password-meter-fill.strength-4 {
    background: #3b82f6;
}

.password-meter-label {
    margin-top: 4px;
    font-size: 11px;
    color: #9ca3af;
}

/* ALT FOOTER */
.footer {
    font-size: 11px;
    color: #9ca3af;
    padding: 20px 18px 26px;
}

.footer-legal {
    background: rgba(2, 6, 23, 0.55);
    border-top: 1px solid rgba(148, 163, 184, 0.25);
}

.footer-inner {
    max-width: 1150px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 2fr) minmax(0, 1fr);
    gap: 16px;
    align-items: start;
}

.footer-title {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #e5e7eb;
}

.footer-subtitle {
    display: block;
    margin-top: 6px;
    color: #9ca3af;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 10px;
}

.footer-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 11px;
    color: #e2e8f0;
    text-decoration: none;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(148, 163, 184, 0.45);
    transition: transform 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.footer-links a:hover {
    transform: translateY(-1px);
    color: #fff7ed;
    border-color: rgba(249, 115, 22, 0.75);
}

.footer-meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: right;
    color: #94a3b8;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .wrapper {
        grid-template-columns: minmax(0, 1fr);
    }
    .register-page .wrapper {
        grid-template-columns: minmax(0, 1fr);
        gap: 20px;
    }
    .register-page .left-info,
    .register-page .right-login {
        width: 100%;
    }
    .register-page .login-card {
        width: 100%;
    }
    .metric-row {
        grid-template-columns: minmax(0, 1fr);
    }
    .reset-page .wrapper {
        grid-template-columns: minmax(0, 1fr);
        gap: 20px;
    }
    .footer-inner {
        grid-template-columns: minmax(0, 1fr);
        text-align: center;
    }
    .footer-links {
        justify-content: center;
    }
    .footer-meta {
        text-align: center;
    }
}

@media (max-width: 650px) {
    .topbar {
        padding: 10px 18px;
    }
    .left-info h1 {
        font-size: 19px;
    }
    .promo-grid {
        grid-template-columns: minmax(0, 1fr);
    }
    .main {
        margin-top: 16px;
        padding: 0 14px 22px;
    }
    .register-page .left-info {
        padding: 20px 18px;
        border-radius: 18px;
    }
    .register-page .wrapper::before {
        inset: -20px -14px;
    }
    .register-page .right-login {
        width: 100%;
    }
    .register-page .login-card {
        padding: 16px 14px 14px;
        border-radius: 18px;
    }
    .metric-row {
        grid-template-columns: minmax(0, 1fr);
    }
    .feature-item {
        grid-template-columns: 1fr;
    }
    .feature-index {
        width: 30px;
        height: 30px;
        font-size: 10px;
        border-radius: 10px;
    }
    .trust-row {
        gap: 6px;
    }
    .pricing {
        padding: 14px 14px 18px;
    }
    .pricing-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 430px) {
    .hero-band {
        flex-wrap: wrap;
    }
    .left-info h1 {
        font-size: 18px;
    }
    .plan-price {
        font-size: 18px;
    }
    .plan-list {
        font-size: 10px;
    }
    .login-card h2 {
        font-size: 16px;
    }
}


.reset-page .wrapper {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.9fr);
    gap: 36px;
    align-items: center;
}

.reset-left {
    padding: 26px 24px;
    border-radius: 22px;
    background: linear-gradient(160deg, rgba(2, 6, 23, 0.98), rgba(30, 41, 59, 0.75));
    border: 1px solid rgba(148, 163, 184, 0.35);
    box-shadow: 0 26px 60px rgba(2, 6, 23, 0.7);
    position: relative;
    overflow: hidden;
}

.reset-left::before {
    content: "";
    position: absolute;
    inset: -40% -20% auto auto;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.35), transparent 70%);
    opacity: 0.75;
}

.reset-left::after {
    content: "";
    position: absolute;
    inset: auto auto -50% -30%;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(251, 146, 60, 0.35), transparent 70%);
    opacity: 0.7;
}

.reset-steps {
    display: grid;
    gap: 12px;
    margin: 16px 0 14px;
}

.reset-step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(2, 6, 23, 0.65);
    border: 1px solid rgba(148, 163, 184, 0.3);
}

.step-index {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
    color: #0f172a;
    background: linear-gradient(135deg, #38bdf8, #22c55e);
    box-shadow: 0 8px 16px rgba(56, 189, 248, 0.35);
}

.step-title {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 4px;
}

.step-desc {
    font-size: 11px;
    color: #cbd5f5;
}

.reset-note {
    font-size: 11px;
    color: #94a3b8;
}

.reset-form {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.reset-card {
    border-radius: 22px;
    padding: 22px 22px 20px;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.98), rgba(2, 6, 23, 0.95));
    border: 1px solid rgba(148, 163, 184, 0.4);
    box-shadow: 0 26px 60px rgba(2, 6, 23, 0.7);
    width: 100%;
    max-width: 460px;
}

.reset-card h2 {
    font-size: 19px;
    margin-bottom: 4px;
}

.reset-card .info {
    font-size: 13px;
    color: #9ca3af;
    margin-bottom: 12px;
}

.reset-card .btn-main {
    background: linear-gradient(90deg, #38bdf8, #f97316);
    border-color: rgba(56, 189, 248, 0.6);
    box-shadow: 0 12px 26px rgba(56, 189, 248, 0.35), 0 10px 24px rgba(249, 115, 22, 0.35);
}

.reset-card .btn-main:hover {
    filter: brightness(1.06);
}

.policy-page {
    padding-top: 18px;
}

.policy-card {
    max-width: 940px;
    margin: 0 auto;
    border-radius: 22px;
    padding: 22px 22px 20px;
    background: linear-gradient(160deg, rgba(2, 6, 23, 0.96), rgba(30, 41, 59, 0.7));
    border: 1px solid rgba(148, 163, 184, 0.35);
    box-shadow: 0 26px 60px rgba(2, 6, 23, 0.7);
}

.policy-card h1 {
    font-size: 22px;
    margin-bottom: 6px;
}

.policy-lead {
    font-size: 13px;
    color: #cbd5f5;
    margin-bottom: 16px;
}

.policy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
}

.policy-block {
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(2, 6, 23, 0.65);
    border: 1px solid rgba(148, 163, 184, 0.3);
}

.policy-block h3 {
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 4px;
}

.policy-block p {
    font-size: 11px;
    color: #cbd5f5;
}

.policy-note {
    margin-top: 14px;
    font-size: 11px;
    color: #94a3b8;
}


.pricing {
    margin-top: 22px;
    padding: 16px 18px 22px;
    border-radius: 18px;
    background: linear-gradient(160deg, rgba(2, 6, 23, 0.96), rgba(30, 41, 59, 0.7));
    border: 1px solid rgba(148, 163, 184, 0.35);
    box-shadow: 0 24px 50px rgba(2, 6, 23, 0.7);
}

.pricing-head h2 {
    font-size: 18px;
    margin-bottom: 4px;
}

.pricing-head p {
    font-size: 12px;
    color: #9ca3af;
}

.pricing-grid {
    margin-top: 14px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
}

.pricing-card {
    position: relative;
    padding: 14px 14px 16px;
    border-radius: 16px;
    background: rgba(15, 23, 42, 0.92);
    border: 1px solid rgba(148, 163, 184, 0.3);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.7);
}

.pricing-card.featured {
    border-color: rgba(249, 115, 22, 0.6);
    box-shadow: 0 18px 34px rgba(249, 115, 22, 0.25);
}

.plan-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.3px;
    padding: 3px 8px;
    border-radius: 999px;
    background: rgba(249, 115, 22, 0.2);
    color: #ffedd5;
    border: 1px solid rgba(249, 115, 22, 0.6);
}

.plan-title {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 6px;
}

.plan-price {
    font-size: 20px;
    font-weight: 800;
    color: #f8fafc;
    margin-bottom: 8px;
}

.plan-price span {
    font-size: 11px;
    color: #9ca3af;
    margin-left: 6px;
}

.plan-list {
    list-style: none;
    font-size: 11px;
    color: #cbd5f5;
    margin-bottom: 12px;
}

.plan-list li {
    margin-bottom: 4px;
}

.plan-list li::before {
    content: "?";
    color: #f97316;
    margin-right: 6px;
}

.plan-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    border: none;
    border-radius: 999px;
    padding: 8px 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.3px;
    color: #0f172a;
    background: linear-gradient(135deg, #38bdf8, #f97316);
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.plan-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 22px rgba(56, 189, 248, 0.25);
    filter: brightness(1.05);
}

@media (max-width: 900px) {
    .pricing {
        margin-top: 14px;
    }
}


@media (max-width: 900px) {
    .reset-page .wrapper {
        grid-template-columns: minmax(0, 1fr);
        gap: 20px;
        align-items: stretch;
    }
    .reset-page .left-info,
    .reset-page .right-login,
    .reset-page .reset-form {
        width: 100%;
    }
    .reset-page .reset-card {
        max-width: 100%;
    }
}

@media (max-width: 650px) {
    .reset-page .reset-left {
        padding: 20px 18px;
        border-radius: 18px;
    }
    .reset-page .reset-card {
        padding: 18px 18px 16px;
        border-radius: 18px;
    }
}
