/* Estilos generales */
body {
    font-family: Arial, sans-serif;
    background-color: #e9ebee;
    color: #333;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Contenedor principal */
.container {
    width: 100%;
    max-width: 450px;
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
}

h2 {
    color: #0044cc;
    margin-bottom: 20px;
}

/* Estilos para los campos de entrada */
input[type="email"],
input[type="password"],
input[type="text"],
input[type="file"] {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    display: block;
}

/* Estilo para el checkbox */
input[type="checkbox"] {
    margin-right: 5px;
}

/* Botón de acción principal */
button {
    background-color: #4267B2;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    font-size: 16px;
    transition: background-color 0.3s;
    margin-top: 10px;
}

button:hover {
    background-color: #365899;
}

/* Enlace de registro y navegación */
a {
    text-decoration: none;
    color: #0044cc;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}

/* Mejoras visuales en formularios */
form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

label {
    font-weight: bold;
    margin-top: 10px;
    display: block;
    text-align: left;
    width: 100%;
}
