* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #f3f3f3;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
}

.login-wrapper {
    width: 1100px;
    height: 650px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* LEFT SIDE */

.login-left {
    width: 50%;
    position: relative;
}

.login-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.login-brand {
    position: absolute;
    top: 40px;
    left: 40px;
    color: white;
}

.login-brand h1 {
    font-size: 40px;
    font-weight: bold;
}

.login-brand p {
    font-size: 18px;
}


/* RIGHT SIDE */

.login-right {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
}

.login-box {
    width: 350px;
}

.login-box h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.subtitle {
    color: #777;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
}

.password-input {
    position: relative;
}

.password-input .eye {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    margin-bottom: 20px;
}

.form-options a {
    color: #ff5b5b;
    text-decoration: none;
}

.btn-login {
    width: 100%;
    padding: 12px;
    border: none;
    background: #1656b9;
    color: white;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
}

.btn-login:hover {
    background: #0f45a0;
}

.signup {
    text-align: center;
    margin: 20px 0;
    font-size: 14px;
}

.signup a {
    color: #ff5b5b;
    text-decoration: none;
}

.divider {
    text-align: center;
    margin: 20px 0;
    position: relative;
}

.divider span {
    background: white;
    padding: 0 10px;
    color: #999;
}

.divider:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 1px;
    background: #ddd;
    z-index: -1;
}

.social-login {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.social-btn {
    width: 80px;
    height: 45px;
    border: 1px solid #2b6edb;
    background: white;
    border-radius: 6px;
    font-size: 18px;
    cursor: pointer;
}

/* ================================= */
/* RESPONSIVE */
/* ================================= */

@media (max-width: 1024px) {

    .login-wrapper {
        width: 95%;
        height: auto;
    }

    .login-left {
        width: 45%;
    }

    .login-right {
        width: 55%;
    }

}


@media (max-width: 768px) {

    body {
        height: auto;
        padding: 20px;
    }

    .login-wrapper {
        flex-direction: column;
        width: 100%;
        height: auto;
    }

    .login-left {
        width: 100%;
        height: 250px;
    }

    .login-left img {
        height: 250px;
    }

    .login-brand {
        top: 20px;
        left: 20px;
    }

    .login-brand h1 {
        font-size: 28px;
    }

    .login-brand p {
        font-size: 14px;
    }

    .login-right {
        width: 100%;
        padding: 30px 20px;
    }

    .login-box {
        width: 100%;
        max-width: 400px;
        margin: auto;
    }

}


@media (max-width: 480px) {

    .login-left {
        display: none;
    }

    .login-wrapper {
        border-radius: 10px;
    }

    .login-box h2 {
        font-size: 24px;
    }

    .subtitle {
        font-size: 13px;
    }

    .form-options {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .social-login {
        gap: 10px;
    }

    .social-btn {
        width: 100%;
    }

}