/* Overall 50/50 */
.auth-page-container {
    display: flex;
    min-height: 100vh;
    width: 100%;
    background-color: #ffffff;
}

/* Left column - Reduce font size and realign */
.auth-left-form {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    position: relative;
}

.lang-selector {
    position: absolute;
    top: 20px;
    left: 20px;
}

.auth-form-wrapper {
    width: 100%;
    max-width: 360px; /* Reduce the form width for a more streamlined look */
}

.auth-logo {
    height: 100px; /* Reduced logo size */
    width: auto;
    margin-bottom: 5px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Refine the Form Title */
.form-title {
    font-size: 1.5rem !important; /* Minimize main title */
    font-weight: 700;
    color: #181c32;
    margin-bottom: 8px;
}

.form-desc {
    font-size: 0.9rem !important; /* Minimize description */
    color: #7e8299;
    font-weight: 500;
    margin-bottom: 30px;
}

/* Right column - Banner */
.auth-right-banner {
    flex: 1;
    background-color: #f8f9fa;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

/* Reduce the size of the text on the banner */
.banner-title {
    font-size: 1.75rem !important; /* Reduced from 2.5rem to 1.75rem */
    font-weight: 700;
    color: #181c32;
    margin-bottom: 12px;
}

.banner-desc {
    font-size: 1rem !important; /* Reduce banner description size */
    color: #5e6278;
    font-weight: 500;
}

.banner-img {
    max-width: 75%; /* Reduce image size so it doesn't take up too much space */
    height: auto;
    margin-top: 40px;
}

/* Button adjustments */
.btn-lg {
    padding: 10px 20px !important;
    font-size: 0.95rem !important;
}

@media (max-width: 991px) {
    .auth-right-banner { display: none; }
}