/* Estilos base */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body, html {
    height: 100%;
}

body {
    font-family: Arial, sans-serif;
    background-color: #004085; /* Azul oscuro para el fondo */
    color: #333; /* Texto oscuro */
}

.vista {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: rgba(38, 37, 37, 0.5); 
}

.login {
    background-color: #fff; /* Fondo blanco para el formulario */
    padding: 30px;
    border-radius: 10px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); /* Sombra suave */
}

.title-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.logo {
    width: 50px;
    height: auto;
    margin-right: 10px;
}

h1.site-title {
    font-size: 24px;
    color: #1364ef; /* Color azul para el título */
}

h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #333; /* Color oscuro para el subtítulo */
}

label {
    display: block;
    margin-bottom: 5px;
    color: #333; /* Color oscuro para las etiquetas */
}

input {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: none;
    border-bottom: 1px solid #ddd; /* Borde inferior gris */
    border-radius: 0;
    font-size: 16px;
    outline: none;
}

input:focus {
    border-bottom: 1px solid #1364ef; /* Color azul al enfocar */
}

input[type="submit"] {
    background-color: #1364ef; /* Botón azul */
    color: #fff; /* Texto en blanco */
    cursor: pointer;
    border: none;
    padding: 12px;
    transition: background-color 0.3s ease;
    margin-top: 10px;
}

input[type="submit"]:hover {
    background-color: #0a46b1; /* Color más oscuro para hover */
}

.forgot-password, .register-option, .back-to-login {
    text-align: center;
    margin-top: 10px;
}

.forgot-password a, .register-option a, .back-to-login a {
    color: #007BFF; /* Color azul para los enlaces */
    text-decoration: none;
}

.forgot-password a:hover, .register-option a:hover, .back-to-login a:hover {
    text-decoration: underline;
}

.back-to-login {
    text-align: center;
    margin-top: 20px;
}

.register-option {
    text-align: center;
    margin-top: 20px;
}









