/* Estilos del login y registro */

body {
    font-family: Arial, sans-serif;
    background-color: #282828;
    margin: 0;
    padding: 0;
}

.logo {
    width: 130px;
}


/* parte superior */

header {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #214338;
    color: white;
    height: 100px;
    padding: 0 10px;
}

header nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    padding: 0 200px;
    margin: 0;
}

header nav ul li a {
    color: white;
    text-decoration: none;
    padding: 4px 8px;
    background-color: #314d44;
    border-radius: 18px;
    border: 2px solid #3c564d;
}

header nav ul li a:hover,
header nav ul li a.activo {
    color: #00E0C6;
    border-color: #00E0C6;
}


/* Parte central */

.contenedor-login {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 100px);
}

.caja {
    background-color: #373737;
    padding: 30px 40px;
    border-radius: 12px;
    width: 320px;
    text-align: center;
}

.caja h2 {
    color: #00E0C6;
    margin-bottom: 20px;
    font-size: 24px;
}

.caja p {
    color: white;
    font-size: 18px;
    margin: 20px 0;
}

hr {
    margin: 25px 0;
    border: none;
    height: 1px;
    background-color: #4a4a4a;
}


/* Formulario */

.caja label {
    display: block;
    text-align: left;
    margin-top: 10px;
    margin-bottom: 5px;
    color: #cccccc;
    font-size: 14px;
}

.caja input[type="text"],
.caja input[type="password"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 6px;
    border: none;
    background-color: #4a4a4a;
    color: white;
    font-size: 14px;
    box-sizing: border-box;
}

.caja input[type="text"]:focus,
.caja input[type="password"]:focus {
    outline: none;
    border: 2px solid #00E0C6;
}

.caja input[type="submit"] {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    border: none;
    border-radius: 6px;
    background-color: #214338;
    color: white;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
}

.caja input[type="submit"]:hover {
    background-color: #00E0C6;
    color: black;
}


/* Botones y mesnajes */

.boton {
    display: block;
    margin: 10px auto;
    padding: 10px;
    width: 80%;
    text-decoration: none;
    color: white;
    background-color: #214338;
    border-radius: 6px;
    border: 2px solid #3c564d;
    text-align: center;
}

.boton:hover {
    background-color: #00E0C6;
    color: black;
}

.boton.salir {
    background-color: #b03030;
    border-color: #8b0000;
}

.error,
.js-form-message {
    color: #ff6b6b;
    margin-bottom: 15px;
    padding: 8px;
    background-color: rgba(255, 75, 75, 0.2);
    border-radius: 6px;
    font-size: 14px;
}