/* forgot_password.php — estilos de la pantalla de recuperación de contraseña */
:root {
    --primary-blue: #0d47a1;
    --primary-yellow: #fbc02d;
}

body {
    background: url('../../img/academic_bg.png') no-repeat center center fixed;
    background-size: cover;
    font-family: 'Roboto', sans-serif;
    display: flex;
    min-height: 100vh;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0;
    position: relative;
}

body::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(13, 71, 161, 0.4);
    z-index: -1;
}

.login-card {
    width: 100%;
    max-width: 450px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.login-card .card-content {
    padding: 40px;
}

.login-header {
    text-align: center;
    margin-bottom: 20px;
}

.login-header h5 {
    color: var(--primary-blue);
    font-weight: 700;
    margin: 0;
}

.btn-login {
    background-color: var(--primary-yellow);
    color: var(--primary-yellow-on);
    font-weight: bold;
    width: 100%;
    border-radius: 30px;
    height: 50px;
    line-height: 50px;
    margin-top: 20px;
}

.btn-login:hover {
    background-color: #f9a825;
    color: #fff;
}

.alert-message {
    text-align: center;
    font-weight: 500;
    margin-bottom: 15px;
    padding: 10px;
    border-radius: 5px;
}

.alert-error {
    background-color: #ffebee;
    color: #d32f2f;
    border: 1px solid #ffcdd2;
}

.alert-success {
    background-color: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #c8e6c9;
}
