:root {
    --brand-blue: #244d78;
    --brand-orange: #f2a94a;
    --brand-orange-hover: #e0963a;
    --brand-bg-cream: #fff9f1;
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --font-size-h: 1.6rem;
    --font-weight-h: 800;
    --font-size-sub: 0.85rem;
    --font-weight-sub: 700;
    --font-size-text: 0.95rem;
    --font-weight-text: 500;
}

body.login-page {
    background-color: #ffffff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
    font-family: sans-serif;
}

.recover-card-container {
    background-color: var(--brand-bg-cream);
    border-radius: 50px;
    padding: 45px 35px;
    width: 100%;
    max-width: 450px;
    box-shadow: var(--card-shadow);
    text-align: center;
}

.logo-main {
    max-width: 220px;
    margin-bottom: 30px;
}

.recover-title {
    color: var(--brand-blue);
    font-weight: var(--font-weight-h);
    font-size: var(--font-size-h);
    margin-bottom: 25px;
}

.input-pill {
    width: 100%;
    border-radius: 30px !important;
    border: 1.5px solid var(--brand-orange);
    padding: 14px 25px;
    background-color: white;
    margin-bottom: 15px;
    color: var(--brand-blue);
    font-size: var(--font-size-text);
    font-weight: var(--font-weight-text);
    transition: all 0.3s ease;
    outline: none;
}

    .input-pill:focus {
        border-color: var(--brand-orange);
        box-shadow: 0 0 0 4px rgba(242, 169, 74, 0.15);
    }

.btn-orange-pill {
    width: 100%;
    background-color: var(--brand-orange);
    border: none;
    color: white;
    border-radius: 30px;
    font-weight: var(--font-weight-h);
    font-size: 1rem;
    padding: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
}

    .btn-orange-pill:hover {
        background-color: var(--brand-orange-hover);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(242, 169, 74, 0.3);
    }

#response-message-div {
    margin-bottom: 20px;
    padding: 12px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
}

.text-success-custom {
    color: #155724;
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
}

.recover-footer-links {
    margin-top: 25px;
}

    .recover-footer-links a {
        color: var(--brand-orange);
        text-decoration: underline;
        font-weight: var(--font-weight-sub);
        font-size: var(--font-size-sub);
        margin: 0 10px;
    }

@media (max-width: 576px) {
    .recover-card-container {
        padding: 35px 20px;
        max-width: 90%;
        border-radius: 35px;
    }

    .recover-title {
        font-size: 1.4rem;
    }
}
