/* Estilo general del cuerpo */
* {
    box-sizing: border-box;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #121212; /* Fondo oscuro */
    color: #ffffff; /* Texto blanco */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Altura completa de la pantalla */
    background-image: url('../../img/fondo-explorers.jpg'); /* Imagen de fondo */
    background-size: cover;
    background-position: center;
}

/* Contenedor del formulario */
.login-container {
    background-color: rgba(0, 0, 0, 0.8); /* Fondo semitransparente */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    text-align: center;
    width: 100%;
    max-width: 320px;
}

/* Logo */
.logo {
    max-width: 250px;
    margin-bottom: 20px;
}

/* Títulos */
h1 {
    margin-bottom: 20px;
    font-size: 24px;
    color: #ffffff;
}

h2 {
    margin-top: 20px;
    font-size: 18px;
    color: #ffffff;
}

/* Mensajes */
.success-message {
    color: #4caf50; /* Verde */
    margin-bottom: 10px;
    background-color: rgba(40, 167, 69, 0.2);
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #4caf50;
}

.error-message {
    color: #f44336; /* Rojo */
    margin-bottom: 10px;
    background-color: rgba(220, 53, 69, 0.2);
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #f44336;
}

/* Campos del formulario */
form label {
    display: block;
    text-align: left;
    margin-bottom: 5px;
    font-size: 14px;
}

form input {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #333;
    border-radius: 5px;
    background-color: #1e1e1e;
    color: #ffffff;
    font-size: 14px;
}

form input:focus {
    outline: none;
    border-color: #89B126; /* Verde Explorers */
}

/* Botón */
form button {
    width: 100%;
    padding: 10px;
    background-color: #89B126; /* Verde Explorers */
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

form button:hover {
    background-color: #F5A600; /* Amarillo/naranja Explorers */
}
