/* Contenido para: css/login_styles.css (Extraído de tu código original) */

body, html {
    height: 100%;
    margin: 0;
    background: url('../img/fondo.jpg') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wrapper {
    display: flex;
    height: 100vh;
    width: 100%;
    max-width: 1200px;
}

.form-container, .image-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.form-container {
    background-color: rgba(0, 0, 0, 0);
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

h2 {
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    font-family: 'Arial', sans-serif;
}

.form-label, .form-control, .form-group button {
    color: white;
    font-family: 'Arial', sans-serif;
}

.form-control {
    background-color: transparent;
    border: 1px solid white;
    border-radius: 8px;
    padding: 0.75rem 1.25rem;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control::placeholder {
    color: #ddd;
}

.form-control:focus {
    border-color: #0056b3;
    box-shadow: 0 0 0 0.2rem rgba(0, 86, 179, 0.25);
    outline: none;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group button {
    background-color: rgba(0, 51, 102, 0.8);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
}

.form-group button:hover {
    background-color: rgba(0, 34, 68, 0.9);
    transform: translateY(-2px);
}

.error {
    color: red;
    font-size: 0.875rem;
    margin-top: 1rem;
}

.logo {
    display: block;
    margin: 0 auto 1.5rem;
    width: 200px;
    height: auto;
}

.image-container img {
    max-width: 70%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
}