﻿body {
    font-family: Arial, sans-serif;
    margin: 0;
    height: 100vh;
    background-image: url('../Images/Fondo.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: rgba(0, 0, 0, 0.4); /* leve oscuridad de fondo */
    background-blend-mode: overlay;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-container {
    background-color: rgba(255, 255, 255, 0.85); /* semitransparente */
    padding: 30px;
    border-radius: 10px;
    border: 2px solid #0078D7; /* borde azul */
    width: 350px;
    text-align: left; /* alinear texto a la izquierda */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.logo-container {
    margin-bottom: 20px;
    text-align: center; /* centrar solo el logo */
}

.logo {
    width: 175px; /* logo más grande */
    height: 96px;
}

.login-container h2 {
    margin-bottom: 20px;
    text-align: left; /* alinear título a la izquierda */
    color: #333;
}

.login-container label {
    display: block;
    margin-top: 10px;
    text-align: left;
    color: #333;
    font-weight: bold;
}

.input-text {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    box-sizing: border-box;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.login-button {
    margin-top: 20px;
    width: 100%;
    padding: 10px;
    background-color: #0078D7;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.login-button:hover {
    background-color: #005ea6;
}
.user-type-buttons {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.role-button {
    flex: 1;
    padding: 8px;
    background-color: #e0e0e0;
    border: 1px solid #ccc;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

    .role-button:hover {
        background-color: #ccc;
    }
