body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #fff;
}

body, main, .container, .menu-container {
    cursor: default;
    user-select: none; /* deshabilita la selección de texto en esas zonas */
}

.login-container {
    display: flex;
    height: 100vh;
}

.login-left {
    flex: 1;
    background: linear-gradient(135deg, #b30000, #ff3333);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.login-right {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

h1, h2 {
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

input[type="email"],
input[type="password"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.btn-login {
    width: 100%;
    padding: 12px;
    background-color: #b30000;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.btn-login:hover {
    background-color: #800000;
}

.error-box {
    margin-top: 15px;
    padding: 10px;
    border: 1px solid #ff0000;
    background: #ffe6e6;
    color: #b30000;
    border-radius: 5px;
}
.form-extra {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-size: 14px;
}

.form-extra .remember {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #333;
}

.forgot-link {
    color: #b30000;
    text-decoration: none;
}

.forgot-link:hover {
    text-decoration: underline;
    color: #800000;
}

.alert {
    padding: 10px;
    margin-top: 15px;
    border-radius: 5px;
    font-size: 14px;
}

.alert-success {
    background: #e6ffed;
    border: 1px solid #28a745;
    color: #155724;
}


/* Ocultar el botón nativo de Edge para mostrar contraseña */
input[type="password"]::-ms-reveal,
input[type="password"]::-ms-clear {
    display: none;
}

