/* public/css/usuario_login.css */

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #f4f4f4;
    font-family: Arial, sans-serif;
}

.login-container {
    display: flex;
    flex-direction: row;
    width: 100%;
    max-width: 450px;
    background-color: #ffffff;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.login-left, .login-right {
    flex: 1;
    padding: 20px;
}

.login-left {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #007bff;
    color: white;
    flex-direction: column;
    text-align: center;
    font-size: 1.2em;
    padding: 20px;
}

.login-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.login-left h1 {
    font-size: 2em;
    margin: 0;
}

.login-left p {
    font-size: 1em;
}

.form-group {
    margin-bottom: 1rem;
}

.form-control {
    border-radius: 4px;
    padding: 10px;
    font-size: 1em;
}

.btn-block {
    width: 100%;
    padding: 10px;
    font-size: 1em;
    border-radius: 4px;
    margin-top: 10px;
}

.text-center a {
    font-size: 0.9em;
}

@media (max-width: 768px) {
    .login-container {
        flex-direction: column;
        max-width: 90%;
    }

    .login-left {
        font-size: 1em;
        padding: 15px;
    }

    .login-left h1 {
        font-size: 1.8em;
    }

    .login-left p {
        font-size: 0.9em;
    }
}
