body {
    background-color: #fff;
    color: #333;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.login-container {
    display: flex;
    min-height: 100vh;
    height: 100%;
}

.left-section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    padding: 20px;
}

.right-section {
    flex: 1;
}

.form-wrapper {
    max-width: 400px;
    width: 100%;
    padding: 20px;
    text-align: center;
}

.form-wrapper img {
    height: 100px;
    margin-bottom: 20px;
}

.form-wrapper .form-control {
    margin-bottom: 15px;
    border-radius: 5px;
    border: 1px solid #ddd;
    padding: 10px;
}

.footer {
    position: relative;
    bottom: 10px;
    text-align: center;
    width: 100%;
    color: #666;
}

.google-login {
    margin-top: -10px;
}

.right-section {
    background-image: url('../../assets/images/login.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100vh;
}

@media (max-width: 768px) {
    .login-container {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 100vh;
    }

    .left-section {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .form-wrapper {
        width: 90%;
        max-width: 400px;
        text-align: center;
    }

    .right-section {
        display: none !important;
    }
}


@media (max-width: 480px) {
    .form-wrapper img {
        height: 80px;
    }

    .form-wrapper .form-control {
        font-size: 14px;
        padding: 8px;
    }

    .google-login img {
        width: 160px;
    }
}

.ri-google-fill {
    background: conic-gradient(from -45deg, #ea4335 110deg, #4285f4 90deg 180deg, #34a853 180deg 270deg, #fbbc05 270deg) 73% 55%/150% 150% no-repeat;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
  }