/* General Styles */
body, html {
    height: 100%;
    margin: 0;
    font-family: 'Montserrat', Arial, sans-serif;
    background-color: #f4f4f4;
}

.login-container {
    display: flex;
    height: 100vh;
}

/* Left Section Styles */
.login-left {
    flex: 1;
    background-color: #ff7f50; /* Coral background */
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    text-align: center;
}

.brand-content {
    max-width: 400px;
}

.brand-content .page-logo {
    width: 120px;
    margin-bottom: 20px;
}

.brand-content h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.brand-content p {
    font-size: 1.1rem;
}

/* Right Section Styles */
.login-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

/* Panel and Form Styles */
.login-panel {
    width: 100%;
    max-width: 400px;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.login-form h3 {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 20px;
}

.login-form .form-group {
    margin-bottom: 15px;
}

.login-form .btn-primary {
    background-color: #ff7f50;
    border-color: #ff7f50;
    font-size: 1rem;
}

.login-form .btn-primary:hover {
    background-color: #e57245;
    border-color: #e57245;
}

/* Footer Styles */
#company .content {
    text-align: center;
    color: #666;
    font-size: 0.8rem;
    padding: 20px 0;
}

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

    .login-left, .login-right {
        flex: 1;
        padding: 20px;
    }

    .brand-content h2 {
        font-size: 1.5rem;
    }

    .login-form h3 {
        font-size: 1.5rem;
    }
}
