@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background:
        radial-gradient(circle at top left, rgba(181,18,27,.18), transparent 35%),
        linear-gradient(135deg, #081225 0%, #0f172a 45%, #b5121b 130%);
    min-height: 100vh;
}

.reset-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px;
}

.reset-card {
    width: 100%;
    max-width: 480px;
    background: rgba(255,255,255,.96);
    border: 1px solid rgba(255,255,255,.35);
    border-radius: 30px;
    padding: 34px;
    box-shadow: 0 30px 80px rgba(0,0,0,.28);
}

.reset-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 26px;
}

.reset-brand img {
    width: 58px;
    height: 58px;
    object-fit: contain;
    background: #fff;
    border-radius: 18px;
    padding: 8px;
    box-shadow: 0 10px 24px rgba(15,23,42,.12);
}

.reset-brand span {
    font-weight: 800;
    color: #0f172a;
}

.reset-icon {
    width: 58px;
    height: 58px;
    border-radius: 20px;
    background: linear-gradient(135deg, #b5121b, #8f0f16);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.45rem;
    margin-bottom: 18px;
}

.reset-card h1 {
    margin: 0;
    font-size: 2rem;
    color: #0f172a;
    letter-spacing: -.04em;
}

.reset-card p {
    color: #64748b;
    line-height: 1.6;
    margin: 12px 0 26px;
}

.reset-form label {
    display: block;
    font-weight: 700;
    color: #334155;
    margin-bottom: 8px;
}

.reset-input {
    position: relative;
    margin-bottom: 20px;
}

.reset-input i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
}

.reset-input input {
    width: 100%;
    height: 56px;
    border-radius: 18px;
    border: 1px solid #e2e8f0;
    padding: 0 18px 0 50px;
    outline: none;
    font-size: .98rem;
}

.reset-input input:focus {
    border-color: rgba(181,18,27,.45);
    box-shadow: 0 0 0 4px rgba(181,18,27,.09);
}

.reset-form button {
    width: 100%;
    height: 56px;
    border: none;
    border-radius: 18px;
    background: linear-gradient(135deg, #b5121b, #8f0f16);
    color: white;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 16px 34px rgba(181,18,27,.30);
}

.reset-form button:hover {
    transform: translateY(-1px);
}

.reset-back {
    margin-top: 22px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #64748b;
    text-decoration: none;
    font-weight: 700;
}

.reset-back:hover {
    color: #b5121b;
}

@media (max-width: 520px) {
    .reset-card {
        padding: 26px;
        border-radius: 24px;
    }

    .reset-card h1 {
        font-size: 1.65rem;
    }
}

.reset-brand-featured {
    align-items: center;
    gap: 18px;
    padding: 18px;
    margin-bottom: 30px;
    border-radius: 24px;
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    border: 1px solid #e2e8f0;
    box-shadow: 0 14px 34px rgba(15, 23, 42, .08);
}

.reset-logo-box {
    width: 92px;
    height: 92px;
    min-width: 92px;
    border-radius: 26px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 16px 34px rgba(15, 23, 42, .12);
}

.reset-logo-box img {
    width: 76px;
    height: 76px;
    object-fit: contain;
}

.reset-brand-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.reset-platform {
    font-size: 1.35rem;
    font-weight: 900;
    color: #0f172a;
    letter-spacing: -.04em;
}

.reset-brand-text strong {
    color: #b5121b;
    font-size: .95rem;
    letter-spacing: .08em;
}

.reset-brand-text small {
    color: #64748b;
    font-weight: 600;
}

.reset-icon {
    display: none !important;
}

.password-policy-box {
    margin: 6px 0 22px;
    padding: 16px 18px;
    border-radius: 18px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}

.password-policy-box strong {
    display: block;
    color: #0f172a;
    font-size: .92rem;
    margin-bottom: 10px;
}

.password-policy-box ul {
    margin: 0;
    padding-left: 18px;
    color: #64748b;
    font-size: .9rem;
    line-height: 1.7;
}