/* Este codigo es para darle estilo a todas las paginas*/

/* Estilos generales base.css */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f8f8;
    text-align: center;
}

/* Contenedor principal */
.container {
    margin-top: 100px;
}

/* Logo */
.logo {
    position: absolute;
    top: 20px;
    left: 20px;
    max-width: 150px;
    height: auto;
}

/* Barra superior */
.top-bar {
    width: 100%;
    height: 50px;
    background-color: #033787;
}

/* Formulario */
form {
    background: white;
    padding: 20px;
    display: inline-block;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

input, button {
    display: block;
    width: 100%;
    margin: 10px 0;
    padding: 10px;
}

button {
    background-color: #033787;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

button:hover {
    background-color: #02245d;
}

.error-text {
    color: red !important;
    font-weight: bold;
}