/* public/css/auth/forgot.css */

.forgot-wrap {
    width: 100%;
    display: flex;
    justify-content: center;
}

.forgot-card {
    width: 100%;
    max-width: 540px;
    padding: 38px;
    border-radius: 26px;

    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);

    border: 1px solid rgba(255, 255, 255, 0.28);

    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.forgot-header {
    text-align: center;
    margin-bottom: 28px;
}

.forgot-badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 14px;
}

.forgot-header h2 {
    color: #ffffff;
    font-size: 30px;
    font-weight: 900;
    margin-bottom: 10px;
}

.forgot-header p {
    color: rgba(255, 255, 255, 0.88);
    margin: 0;
    line-height: 1.7;
}

.forgot-card label {
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 8px;
}

.forgot-card .form-control {
    height: 52px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #ffffff;
    padding: 12px 15px;
}

.forgot-card .form-control:focus {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.38);
    box-shadow: 0 0 0 0.18rem rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.btn-forgot,
.btn-back-login {
    width: 100%;
    height: 52px;
    border: none;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 800;
}

.btn-forgot {
    color: #ffffff;
    background: linear-gradient(135deg, #3d105f, #5e1992, #8e3cac);
    margin-bottom: 12px;
}

.btn-back-login {
    background: rgba(255, 255, 255, 0.92);
    color: #5e1992;
}

.forgot-alert {
    padding: 14px 16px;
    border-radius: 14px;
    margin-bottom: 18px;
    background: rgba(255, 255, 255, 0.16);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.invalid-feedback {
    color: #ffd7d7 !important;
    font-size: 13px;
}
