.home-banner-section {
    min-height: 30vh;
}

.login-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
}

.login-right {
    background: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.login-box {
    text-align: center;
}

.login-box .logo {
    max-width: 120px;
    margin-bottom: 20px;
}

.input-group input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.login-btn {
    padding: 10px 20px;
    border: none;
    background-color: #007bff;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.login-btn:hover {
    background-color: #0f1924;
}

.banner-inner-wrap {
    height: 100px;
}

.login-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    /* Adjust to make the login area taller if needed */
}

.login-right {
    background: rgba(255, 255, 255, 0.95);
    /* Optional: adds a slight opacity */
    padding: 40px;
    /* Increased padding for more spacious appearance */
    border-radius: 12px;
    width: 450px;
    /* Increased width to make the card larger */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.login-box {
    text-align: center;
}

.login-box .logo {
    max-width: 150px;
    /* Larger logo if needed */
    margin-bottom: 25px;
}

.input-group input {
    width: 100%;
    padding: 12px;
    /* Slightly larger input fields */
    margin: 12px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.login-btn {
    padding: 12px 25px;
    /* Larger button for better emphasis */
    border: none;
    background-color: #021a68;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.social-login {
    text-align: center;
    margin-top: 20px;
}

.social-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    /* Space between social buttons */
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    text-decoration: none;
    color: #fff;
    /* Change color based on your theme */
    transition: background-color 0.3s;
}

.social-btn.google {
    background-color: #db4437;
    /* Google Red */
}

.social-btn.facebook {
    background-color: #3b5998;
    /* Facebook Blue */
}

.social-btn i {
    margin-right: 8px;
    /* Space between icon and text */
    font-size: 20px;
    /* Icon size */
}

.social-btn:hover {
    opacity: 0.8;
    /* Slight hover effect */
}
