
/* layout begin*/
.blue-panel{
    width:100%;
    height:80px;
    background-color: #00539E;
    opacity: 0.95;
    display:flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;    
}

.blue-panel > h4 {
    color:white;
    font-size: 30px;
}

main.main-content{
    min-height: 82dvh;

}

.footer-dark {
    width: 100%;
    min-height: 80px;
    background-color: #000;
    opacity: 1;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    position: fixed;
    bottom: 0;
}
.footer-dark span {
    color: white;
    font-size: 11px;
    font-weight: 400;
    padding: 12px 15px;
}
/* layout end*/

/* pages */

/* Container styles */
.login-container {
    display: flex;
    flex-direction: row;
    width: 100%;    
    background: #fff;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Column styles */
.login-column {
    flex: 1;    
}

.form-column {
    max-width: 450px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px 100px;
    min-height: calc(100vh - 157px);
}

.image-column {
    background-color: #f9fafb;
    display: flex;
    justify-content: center;
    align-items: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    min-height: calc(100vh - 185px);
}

.image-column img {
    max-width: 100%;
    height: auto;
}
 
 

form button:hover {
    background-color: #0056b3;
}

/* Responsive design for mobile */
@media (max-width: 768px) {
    .blue-panel > h4 {
        color:white;
        font-size: 16px;
    }

    .login-container {
        flex-direction: row;
        justify-content: center;
    }

    .image-column {
        display: none; /* Ocultar la segunda columna */
    }

    .form-column {        
        max-width: 350px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        min-height: calc(100vh - 185px);
        padding: 30px; /* Ajustar padding para móviles */
    }
}
