body{
    background-color: var(--text-light);
}
.container {
    display: flex;
    width: 100%;
    max-width: 100%;
    height: 100vh;
}

.login-section {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.banner-section {
    flex: 1;
    background-color: #e5f3f8;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
}

.logo {
    margin-bottom: 40px;
    width: 120px;
}

.login-inner_section {
    width: 100%;
	max-width: 430px;
	margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.input-container {
    position: relative;
}

input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    outline: none;
}

input:focus {
    border-color: #4285f4;
    box-shadow: 0 0 0 2px rgba(66, 133, 244, 0.2);
}

.icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 15px;
    color: #888;
}

.eye-icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 15px;
    color: #888;
    cursor: pointer;
}

.forget-password {
    display: block;
    text-align: right;
    color: #4285f4;
    font-size: 14px;
    text-decoration: none;
    margin-top: 8px;
}

.btn {
    width: 100%;
    padding: 12px;
    background-color: #000;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    font-weight: 500;
    margin-top: 10px;
}

.divider {
    display: flex;
    align-items: center;
    margin: 25px 0;
    color: #888;
    font-size: 14px;
}

.divider::before,
.divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background-color: #ddd;
}

.divider::before {
    margin-right: 10px;
}

.divider::after {
    margin-left: 10px;
}

.signup-text {
    text-align: center;
    margin: 20px 0;
    font-size: 14px;
    color: #666;
}

.signup-link {
    color: #4285f4;
    text-decoration: none;
    font-weight: 500;
}

.social-btn {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
}

.google-btn {
    background-color: white;
    color: #333;
    border: 1px solid #ddd;
}

.facebook-btn {
    background-color: #1877f2;
    color: white;
    border: none;
}

.apple-btn {
    background-color: #000;
    color: white;
    border: none;
}

.social-icon {
    margin-right: 10px;
}

.banner-text {
    font-size: 24px;
    font-weight: bold;
    max-width: 400px;
    margin-bottom: 40px;
    color: #333;
}

.banner-image {
    max-width: 250px;
    margin-bottom: 20px;
}

.login-footer {
    font-size: 12px;
    color: #888;
    margin-top: 40px;
    text-align: center;
}

@media (max-width: 900px) {
    .container {
        flex-direction: column;
    }

    .login-section {
        order: 2;
        max-width: 100%;
    }

    .banner-section {
        order: 1;
        padding: 30px 20px;
    }

    .banner-image {
        max-width: 180px;
    }

    .banner-text {
        font-size: 20px;
    }
}