﻿.login-container {
    display: flex;
    min-height: 100vh;
    background-color: #f8f9fa;
}

.login-image-panel {
    flex: 3;
    display: flex;
    flex-direction: column;
}

.image-container {
    flex: 1;
    background-image: url('../Images/oficina1.png'); /*Modificar imagen*/
    background-size: cover;
    background-position: center;
    min-height: 60vh;
}

.image-caption {
    padding: 1rem;
    background-color: #4F494C;
    color: white;
}

    .image-caption h1 {
        font-size: 1.0rem;
        margin-bottom: 0.5rem;
        color: #f8f9fa;
    }

    .image-caption h2 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .image-caption p {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

.feature-list {
    list-style-type: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

    .feature-list li {
        font-size: 1rem;
        margin-bottom: 0.5rem;
        position: relative;
        padding-left: 1.2rem;
    }

        .feature-list li::before {
            content: '•';
            position: absolute;
            left: 0;
            color: #4CAF50;
            font-size: 1.2rem;
        }

.location-info {
    margin-top: 1.5rem;
    font-style: italic;
    color: #ecf0f1;
}

.login-form-panel {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    background-color: #4F494C;
}

.account-box {
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 250px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

    .account-box h2 {
        color: white;
        text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    }

    .account-box .form-label {
        color: white;
        text-shadow: 1px 1px 1px rgba(0,0,0,0.3);
    }

    .account-box .form-control {
        background-color: rgba(255, 255, 255, 0.8);
    }

    .account-box .text-danger {
        color: #EB0400 !important;
        text-shadow: none;
    }

    .account-box .alert-danger {
        background-color: rgba(220, 53, 69, 0.7);
    }

    .account-box a.text-decoration-none {
        color: #e6e6e6;
        text-shadow: 1px 1px 1px rgba(0,0,0,0.3);
    }

        .account-box a.text-decoration-none:hover {
            color: white;
            text-decoration: underline !important;
        }

.form-control-sm {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
}

.btn-success {
    font-size: 0.9rem;
}

@media (max-width: 992px) {
    .login-container {
        flex-direction: column;
    }

    .login-image-panel {
        order: 2;
    }

    .login-form-panel {
        order: 1;
        padding: 1.5rem;
    }

    .account-box {
        max-width: 100%;
    }
}