
.login-container {
    display: flex;
    height: 88vh;
    align-items: center;
    justify-content: center;
    
}
.login-box {
    background-color: var(--color-white);
    color: #000;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
    text-align: center;
    max-width: 400px;
    width: 100%;
    margin-top: 150px;
}
.login-box img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 20px;
}
.login-box h2 {
    margin-bottom: 30px;
}
.ga-form-group {
    margin-bottom: 20px;
}
.ga-form-button {
    width: 100%;
    margin-top: 20px;
}
.login-box a {
    color: #007bff;
    text-decoration: none;
    display: block;
    margin-top: 15px;
    transition: 0.6s;
}
.login-box a:hover {
    text-decoration: underline;
    transition: 0.6s;
}
.right-section {
    background-image: url('https://via.placeholder.com/500');
    background-size: cover;
    background-position: center;
    position: relative;
    height: 88vh;
    padding: 0;
}
.right-section .overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    color: var(--color-white);
    padding: 20px;
    text-align: center;
}
.hero-title {
    color: var(--color-white);
    font-size: 2.5rem;
    font-weight: bold;
}
@media (max-width: 768px) {

    .right-section {
        display: none;
    }
    .login-box {
        margin-top: 50px;
    }

    .login-container {
        display: flex;
        height: auto;
        align-items: center;
        justify-content: center;
        width: 100%;
        margin-top: 200px;
        margin-bottom: 50px;
    } 
}