﻿.forgot-password-page {
    background: linear-gradient( rgba(0,0,0,0.25), rgba(0,0,0,0.25) ), url('/images/forgot-password-bg.jpg');
    min-height: 95vh;
    background-size: cover;
    background-position: center;
}

.forgot-password-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 150px;
}


.forgot-password-card {
    width: 100%;
    max-width: 440px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}


.heading-subtitle {
    font-size: 1.1rem;
    color: #475569; 
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.heading-title {
    font-size: 1.75rem;
    color: #1e293b; 
    font-weight: 700;
    margin-bottom: 1.5rem;
}


.password-form-group {
    margin-bottom: 1.25rem;
}

.password-form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #334155;
    margin-bottom: 0.25rem;
}

.required-asterisk {
    color: #f43f5e; 
}

.password-form-control {
    width: 100%;
    padding: 0.625rem 0.875rem;
    font-size: 0.95rem;
    border: 1px solid #cbd5e1; 
    border-radius: 6px;
    box-sizing: border-box;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

    .password-form-control:focus {
        outline: none;
        border-color: #6366f1; 
        box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
    }


.password-form-actions {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
    margin-bottom: 1.25rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.625rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    transition: background-color 0.15s ease;
}

.btn-primary {
    background-color: #6366f1; 
    color: #ffffff;
}

    .btn-primary:hover {
        background-color: #4f46e5; 
    }

.password-form-footer {
    font-size: 0.875rem;
    color: #64748b;
    padding-top: 1rem;
    text-align: center;
}

.login-link {
    font-weight: 500;
    color: #6366f1;
    text-decoration: none;
}

    .login-link:hover {
        color: #4f46e5;
        text-decoration: underline;
    }


.alert {
    padding: 0.75rem 1rem;
    border-radius: 6px;
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
}

.alert-success {
    background-color: #dcfce7; 
    color: #166534; 
    border: 1px solid #bbf7d0;
}

.validation-error {
    color: #e11d48; 
    font-size: 0.825rem;
    margin-top: 0.25rem;
}

