.forgot-page {
    display:flex;
    align-items:center;
    justify-content:center;
    padding: 20px;
}

.auth-card {
    width: 100%;
    max-width: 480px;
    background: #000;
    border-radius: 28px;
    padding: 40px 30px;
    box-shadow:
        0 0 30px rgba(255, 0, 128, 0.15),
        0 0 60px rgba(140, 0, 255, 0.08);
    border: 1px solid rgba(255,255,255,0.05);
}

.auth-card h2 {
    text-align: center;
    color: #fff;
    font-size: 2.2rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.sub-text {
    text-align: center;
    color: #cfcfcf;
    font-size: 14px;
    margin-bottom: 22px;
    line-height: 1.6;
}

.message-box {
    text-align: center;
    margin-bottom: 18px;
    min-height: 24px;
}

.message-box p {
    font-size: 14px;
    line-height: 1.5;
}

.input-group {
    margin-bottom: 18px;
}

.input-group label {
    display: block;
    color: #ddd;
    font-size: 14px;
    margin-bottom: 8px;
    font-weight: 500;
}

.input-group input,
.input-group select {
    width: 100%;
    background: #111;
    color: #fff;
    border: none;
    outline: none;
    border-radius: 16px;
    padding: 15px 18px;
    font-size: 15px;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.05);
}

.input-group input::placeholder {
    color: #888;
}

.btn {
    width: 100%;
    border: none;
    outline: none;
    padding: 15px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
    background: linear-gradient(90deg, #ff0080, #8a2be2);
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(255, 0, 128, 0.18);
    margin-top: 4px;
}

.btn:hover {
    transform: translateY(-2px);
}

.secondary-btn {
    width: 100%;
    border: 1px solid rgba(255,255,255,0.08);
    outline: none;
    padding: 14px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    background: #111;
    margin-top: 12px;
}

.footer {
    margin-top: 22px;
    text-align: center;
    color: #ddd;
    font-size: 14px;
    line-height: 1.6;
}

.footer a {
    color: #ff4fd8;
    text-decoration: none;
    font-weight: 600;
}

.footer a:hover {
    text-decoration: underline;
}

.info-box {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 14px 16px;
    margin-bottom: 18px;
    color: #ccc;
    font-size: 14px;
    line-height: 1.6;
}

.info-box strong {
    color: #fff;
}

@media (max-width: 768px) {
    .auth-card {
        padding: 32px 22px;
        border-radius: 24px;
    }

    .auth-card h2 {
        font-size: 1.9rem;
    }
}