.login-container {
    display: flex;
}

.left-panel {
    flex: 1;
    background-color: #f6f6f6;
    padding: 40px;
    color: #333;
}

.left-panel h2 {
    font-size: 28px;
    margin-bottom: 30px !important;
}

.feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px !important;
}

.feature img {
    width: 32px;
    margin-right: 15px;
}

.feature h4 {
    margin: 0;
    font-size: 18px;
}

.feature p {
    margin: 5px 0 0;
    font-size: 14px;
    color: #555;
}

.right-panel {
    flex: 1;
    padding: 40px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #eee;
    border-left: 1px solid #ddd;
}

.right-panel p {
    font-size: 16px;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 28px;
    background: none;
    border: none;
    cursor: pointer;
}

.right-panel h2 {
    font-size: 26px;
    margin-bottom: 20px !important;
}

.right-panel input {
    width: 100%;
    padding: 12px;
    margin-bottom: 10px !important;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 14px;
}

.forgot-link {
    display: block;
    text-align: right;
    font-size: 16px;
    margin-bottom: 20px !important;
    color: var(--black-color);
    text-transform: capitalize;
    text-decoration: none;
}

.login-btn {
    background-color: #000;
    color: #fff;
    padding: 12px;
    width: 100%;
    border: none;
    font-size: 16px;
    margin-bottom: 15px !important;
    cursor: pointer;
}

.divider {
    text-align: center;
    margin: 15px 0;
    font-size: 13px;
    color: #000;
    text-transform: capitalize;
    font-size: 16px;
}

.social-btn {
    padding: 10px;
    width: 100%;
    margin-bottom: 10px !important;
    font-size: 16px;
    text-transform: capitalize;
    border: 1px solid #ccc;
    cursor: pointer;
    background-color: #fff;
    position: relative;
}

.google img {
    position: absolute;
    left: 6px;
    background: #fff;
    padding: 5px;
    width: 30px;
    object-fit: contain;
    top: 6px;
}

.facebook {
    display: flex;
    gap: 7px;
    justify-content: center;
    align-items: center;
}

.social-btn.google {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: #4285f4;
    color: #fff;
    border: none;
}

.social-btn.facebook {
    background-color: #fff;
    color: #000;
}

.create-account {
    text-align: center;
    font-size: 14px;
    margin-top: 20px;
}

.create-account a {
    color: var(--black-color);
    font-size: 16px;
    text-decoration: none;
}
.user .login_drop a {
    padding: 10px;
    display: block;
    border-bottom: 1px solid #ccc;
}

.user .login_drop {
    position: absolute;
    right: 0;
    top: 6.6rem;
    z-index: 999;
    width: 200px;
    background-color: var(--white-color);
    border: 1px solid #ccc;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s ease-in;
}

.user:hover .login_drop {
    visibility: visible;
    opacity: 1;
    transition: 0.3s ease-in;
}

@media (max-width: 1024px) {
    .login-container {
        flex-direction: column;
    }

    .left-panel,
    .right-panel {
        width: 100%;
        border-left: none;
    }

    .right-panel {
        border-top: 1px solid #ddd;
    }
}

@media (max-width: 768px) {
    .left-panel {
        padding: 30px 20px;
    }

    .feature img {
        width: 28px;
        margin-right: 10px;
    }

    .feature h4 {
        font-size: 16px;
    }

    .feature p {
        font-size: 13px;
    }

    .right-panel {
        padding: 30px 20px;
    }

    .right-panel input,
    .login-btn,
    .social-btn {
        font-size: 14px;
        padding: 10px;
    }

    .social-btn.google img {
        width: auto;
        top: 8px;
    }
}

@media (max-width: 480px) {
    .left-panel h2,
    .right-panel h2 {
        font-size: 18px;
    }

    .close-btn {
        font-size: 24px;
        top: 10px;
        right: 15px;
    }
    .login-container {
        flex-direction: column-reverse;
    }

    .create-account {
        font-size: 13px;
    }
}
