/* Estilos del Login */
body {
    background: linear-gradient(135deg, #0072ff 0%, #00c6ff 50%, #28a745 100%);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
}

.login-container {
    background: #fff;
    padding: 35px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 420px;
}

.login-container h2 {
    text-align: center;
    color: #333;
    margin-bottom: 5px;
}

.login-subtitle {
    text-align: center;
    color: #888;
    font-size: 14px;
    margin-bottom: 25px;
}

.form-icon {
    position: absolute;
    top: 50%;
    left: 12px;
    transform: translateY(-50%);
    color: #6c757d;
}

.toggle-password {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    cursor: pointer;
    color: #6c757d;
}

.form-control.ps-5 {
    padding-left: 2.5rem !important;
}

.form-control.pe-5 {
    padding-right: 2.5rem !important;
}

.btn-login {
    background: linear-gradient(to right, #0072ff, #00c6ff);
    border: none;
    color: #fff;
    font-weight: 600;
}

.btn-login:hover {
    background: linear-gradient(to right, #005fd1, #00a8d6);
    color: #fff;
}

.alert {
    font-size: 14px;
    padding: 10px;
}

.role-badges {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
}

.role-badges .badge {
    font-size: 12px;
    padding: 5px 12px;
}
