body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f4f7f6;
    margin: 0;
}

.auth-container {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 320px;
}

.auth-container h2 {
    text-align: center;
    color: #333;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
}

label {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
    color: #555;
}

input,
select {
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button {
    width: 100%;
    padding: 10px;
    background-color: #0056b3;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    margin-top: 10px;
}

button:hover {
    background-color: #004494;
}

.switch-link {
    display: block;
    text-align: center;
    margin-top: 15px;
    font-size: 13px;
    color: #0056b3;
    text-decoration: none;
}

.switch-link:hover {
    text-decoration: underline;
}

.message-box {
    font-size: 13px;
    text-align: center;
    margin-top: 10px;
    display: none;
}

.error {
    color: red;
}

.success {
    color: green;
}

.logo-login {
    display: block;          /* Permite centrar la imagen */
    margin: 0 auto 15px auto; /* Centrado horizontal y un pequeño espacio abajo */
    max-width: 150px;        /* Evita que la imagen sea gigante, ajusta este número según necesites */
    height: auto;            /* Mantiene la proporción original de la imagen */
}