

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    /* Fondo con el azul oscuro de la marca */
    background-color: #0d253f;
    /* Opcional: Si quieres poner una imagen de fondo de un camión, descomenta abajo: */
    /* background-image: url('tu-imagen-fondo.jpg'); background-size: cover; */
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-wrapper {
    background-color: #ffffff;
    width: 100%;
    max-width: 400px;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3); /* Sombra elegante */
    text-align: center;
}

/* Logo */
.logo-login {
    max-width: 150px;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

h2 {
    color: #0d253f; /* Azul Navy */
    margin-bottom: 30px;
    font-size: 24px;
    font-weight: 700;
}

/* Estilos del Formulario */
.input-group {
    margin-bottom: 20px;
    text-align: left;
}

.input-group label {
    display: block;
    color: #333;
    margin-bottom: 5px;
    font-size: 14px;
    font-weight: 600;
}

input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s;
    background-color: #f9f9f9;
}

/* Al hacer clic en el input, se pone azul */
input[type="text"]:focus,
input[type="password"]:focus {
    border-color: #0d253f;
    background-color: #fff;
}

/* Checkbox */
.checkbox-group {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    font-size: 14px;
    color: #555;
    cursor: pointer;
}

.checkbox-group input {
    margin-right: 10px;
    width: 16px;
    height: 16px;
    accent-color: #ff7f32; /* Checkbox Naranja */
}

/* Botón de Entrar */
.btn-login {
    width: 100%;
    padding: 12px;
    background-color: #ff7f32; /* Naranja Marca */
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-login:hover {
    background-color: #e06c28; /* Naranja más oscuro */
}

/* Mensajes de Error */
.alert-error {
    background-color: #fee2e2;
    color: #991b1b;
    padding: 10px;
    border-radius: 4px;
    font-size: 14px;
    margin-bottom: 20px;
    border: 1px solid #f87171;
}

/* Enlace para volver (opcional) */
.back-link {
    display: block;
    margin-top: 20px;
    color: #888;
    text-decoration: none;
    font-size: 14px;
}
.back-link:hover {
    color: #ff7f32;
}