/* Estilo general de la página */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #121212;
    margin: 0;
    padding-top: 10px; /* Reducido de 20px a 10px */
    color: #e0e0e0;
    font-size: 16px;
    line-height: 1.6;
}



/* Contenedor de inicio de sesión */
.login-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

/* Encabezado */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px; /* Reducido de 20px a 10px */
}

.logo {
    max-width: 150px; /* Reducido de 200px a 150px */
    width: 100%;
    height: auto;
}

.header h1 {
    font-size: 1.8em; /* Reducido ligeramente de 2em a 1.8em */
    color: #6200ea;
    margin: 0;
}

/* Formulario */
form {
    max-width: 500px;
    margin: 10px auto 10px; /* Cambiado de 20px a 10px en la parte superior */
    padding: 15px; /* Reducido de 20px a 15px */
    background-color: #1c1c1c;
    border: 1px solid #333;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Campos del formulario */
input[type="text"], input[type="password"], input[type="email"] {
    width: 100%;
    padding: 8px; /* Reducido de 10px a 8px */
    margin-bottom: 15px; /* Reducido de 20px a 15px */
    border: 1px solid #333;
    border-radius: 4px;
    background-color: #2c2c2c;
    color: #e0e0e0;
    box-sizing: border-box;
}

/* Botón */
button {
    width: 100%;
    padding: 8px; /* Reducido de 10px a 8px */
    background-color: #6200ea;
    border: none;
    border-radius: 4px;
    color: #e0e0e0;
    font-size: 16px;
    cursor: pointer;
    margin-bottom: 8px; /* Reducido de 10px a 8px */
}

button:hover {
    background-color: #3700b3;
}

/* Botón de Inicio de Sesión */
.login-button {
    background-color: #6200ea;
}

.login-button:hover {
    background-color: #3700b3;
}

/* Mensajes */
.mensaje {
    padding: 8px; /* Reducido de 10px a 8px */
    margin-bottom: 8px; /* Reducido de 10px a 8px */
    border: 1px solid #ccc;
    background-color: #f2f2f2;
    color: #333;
    border-radius: 4px;
}

.error {
    background-color: #f8d7da;
    border-color: #f5c6cb;
    color: #721c24;
}

/* Ajustes responsivos */
@media (max-width: 600px) {
    .login-container {
        padding-top: 5px; /* Reducido de 10px a 5px */
    }

    form {
        margin: 5px auto; /* Reducido de 10px a 5px */
        padding: 10px; /* Reducido de 15px a 10px */
    }

    .header {
        flex-direction: column;
        align-items: center;
    }

    .logo {
        margin: 5px 0; /* Reducido de 10px a 5px */
        max-width: 120px; /* Reducido de 150px a 120px */
    }

    .header h1 {
        font-size: 1.3em; /* Reducido de 1.5em a 1.3em */
    }

    input[type="text"], input[type="password"], input[type="email"], button {
        font-size: 14px;
    }
}