.imglogor {
    height: auto !important;
}

body {
    background-color: white !important;
    min-height: 100vh;
}

#email::placeholder {
    opacity: 0.75;
    color: inherit;
}

#password::placeholder {
    opacity: 0.75;
    color: inherit;
}

@media (max-width: 768px) {
    #center-vertically {
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .login-card {
        margin: 0px;
        height: auto;
        max-width: 100%;
        width: 100% !important;
    }

    .btn-main,
    .btng {
        padding: 12px 20px;
        /* Increase padding for better tap targets on mobile */
    }

    .img-fluid {
        width: 100%;
        /* Ensures images are fully responsive */
    }

    .login-card {
        width: 100% !important;
        height: 90vh;
        max-width: 1620px;
    }

    .logo2-div {
        width: 100%;
        /* Fixed width */
        height: auto;
        /* Fixed height */
        margin-bottom: 2vh !important;
    }

    #logo2-img .logo2 {
        width: 170px !important;
    }

    @media (min-width: 992px) {
        /* Adjusts settings for larger devices */
        .col-lg-7 {
            flex: 0 0 auto;
            width: 70%;
            /* Increase the width percentage of the card container */
        }
    }
}

.static-image {
    object-fit: cover;
    height: 100vh !important;
    /* Ensure full height of viewport */
}

.scrollable-form-container {
    height: 100vh;
    overflow-y: auto;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
}

.loginimg {
    background-image: url("assets/images/girl_on_mountain.jpg");
    background-size: cover;
    background-position: center;
    height: 100vh;
}

.login-container {
    min-height: 100vh;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.auth-card {
    background: white;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 100%;
    max-width: 1200px;
}

.left-panel {
    background: linear-gradient(135deg, #12163c 0%, #2b1055 100%);
    padding: 3rem;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100%;
    background-image: url("/assets/images/1740718754700.jpg");
    background-size: cover;
    background-position: center;
}

.right-panel {
    padding: 2rem 3rem;
    background: white;
}

.brand-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.brand-header img {
    height: 40px;
    width: auto;
}

.brand-header .brand-text {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    font-weight: 500;
    color: #12163c;
    margin-bottom: 0.5rem;
}

.form-control {
    border: 2px solid #e0e0e0;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #12163c;
    box-shadow: 0 0 0 0.25rem rgba(18, 22, 60, 0.1);
}

.btn-main {
    background: #12163c;
    border: none;
    border-radius: 12px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-main:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(18, 22, 60, 0.2);
}

.btn-google {
    background: white;
    border: 2px solid #e0e0e0;
    padding: 0.75rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.btn-google:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

.divider {
    display: flex;
    align-items: center;
    margin: 1.5rem 0;
    color: #666;
}

.divider::before,
.divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #e0e0e0;
}

.divider span {
    padding: 0 1rem;
}

.input-group select {
    border-radius: 8px;
}

.input-group input {
    border-radius: 8px;
}

@media (max-width: 768px) {
    .left-panel {
        display: none;
    }

    .right-panel {
        padding: 2rem;
    }

    .auth-card {
        margin: 1rem;
    }
}
