body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #1e3a8a;
    font-family: Arial, sans-serif;
    margin: 0;
}

.container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.3);
    width: 100%;
    max-width: 800px;
}

.logo {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.logo img {
    max-width: 150px;
    height: auto;
}

.formulario {
    flex: 2;
    text-align: center;
    width: 100%;
}

h2 {
    color: #1e3a8a;
    text-align: center;
    width: 100%;
}

.error {
    color: red;
    margin-bottom: 10px;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

label {
    font-weight: bold;
    margin-top: 10px;
    text-align: left;
    width: 100%;
    max-width: 300px;
}

input {
    width: 100%;
    max-width: 300px;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

button {
    width: 100%;
    max-width: 300px;
    padding: 10px;
    margin-top: 15px;
    background: #ff5722;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

button:hover {
    background: #e64a19;
}

/* Responsividad */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    .logo {
        margin-bottom: 20px;
    }
    .logo img {
        max-width: 120px;
    }
    .formulario {
        width: 100%;
    }
    form {
        width: 100%;
    }
    label, input, button {
        max-width: 100%;
    }
}

/* Ubicación de archivo CSS */
/* assets/css/login.css */
