body {
    background-color: #f5f5f5;
    font-family: Arial, sans-serif;
}

.login-container {
    max-width: 1000px;
    width: 90%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    display: flex;
}

.row {
    width: 100%;
    margin: 0;
}

.left-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
    border-right: 2px solid #e0e0e0;
    padding: 50px 40px;
    height: 100%;
}

.logo {
    width: 180px;
    height: 180px;
}

.system-title {
    font-size: 1.5rem;
    color: #333;
    margin: 0;
    font-weight: bold;
}

.right-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.login-form-container {
    padding: 40px;
}

.form-label {
    font-weight: 600;
    color: #333;
    font-size: 1.1rem;
}

.form-control {
    padding: 12px;
    font-size: 1.1rem;
}

.password-container {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 12px;
    top: 50px;
    cursor: pointer;
    color: #6c757d;
}

.login-btn {
    background-color: #5177B4;
    border-color: #5177B4;
    padding: 12px;
    font-size: 1.1rem;
    margin-top: 10px;
}

.login-btn:hover {
    background-color: #1c50a3;
}

.forgot-password {
    color: #666;
    text-decoration: none;
    font-size: 1rem;
    display: inline-block;
    margin-top: 10px;
}

.divider {
    position: relative;
    text-align: center;
    margin: 30px 0;
}

.divider-line {
    display: block;
    height: 1px;
    background-color: #e0e0e0;
    position: relative;
    width: 100%;
}

.google-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    border: 1px solid #e0e0e0;
    padding: 12px;
    font-size: 1.1rem;
}

.google-icon {
    width: 20px; 
    height: 20px;
}

.bu-icto {
    color: #5177B4;
    text-decoration: none;
    font-size: 1rem;
    text-align: center;
    display: inline-block;
    margin-top: 10px;
    font-weight: bold;
}

/* For smaller screens */
@media (max-width: 768px) {
    .login-container {
        flex-direction: column;
    }

    .left-column {
        border-right: none;
        border-bottom: 2px solid #e0e0e0;
        padding: 30px;
    }
    
    .login-form-container {
        padding: 30px;
    }
    
    .login-container {
        width: 95%;
    }
}

/* For even smaller screens */
@media (max-width: 576px) {
    .login-form-container {
        padding: 20px;
    }
    
    .logo {
        width: 150px;
        height: 150px;
    }
}