* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Be Vietnam Pro', sans-serif;
    background: #f5f5f5;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

/* Background Blur */
body::before,
body::after {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 0;
}

body::before {
    left: -150px;
    bottom: -100px;
    background: #8ef3f3;
}

body::after {
    right: -120px;
    top: -120px;
    background: #8ef3f3;
}

.login-wrapper {
    width: 1200px;
    max-width: 95%;
    display: flex;
    gap: 30px;
    align-items: center;
    position: relative;
    justify-content: center;
    z-index: 1;
}

/* LEFT */
.left-box {
    width: 420px;
}

.logo {
    margin-bottom: 25px;
}

.logo img {
    max-width: 220px;
}

.banner {
    background: linear-gradient(135deg, #0058d8, #00d4ff);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .1);
}

.banner img {
    width: 100%;
    display: block;
}

/* RIGHT */
.right-box {
    flex: 1;
    max-width: 450px;
    margin-top: 90px;
}

.title {
    font-size: 35px;
    color: #1cc6d4;
    font-weight: 700;
    margin-bottom: 10px;
}

.desc {
    color: #7f7f7f;
    line-height: 1.5;
    font-size: 17px;
    font-weight: 300;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #222;
}

.input-box {
    position: relative;
}

.input-box input {
    width: 100%;
    height: 55px;
    border: 1px solid #c7c7c7;
    border-radius: 10px;
    padding: 0 20px;
    font-size: 16px;
    background: #fff;
    outline: none;
}

.password-toggle {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #777;
    font-size: 22px;
}

.options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.remember {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #777;
}

.remember input {
    width: 20px;
    height: 20px;
}

.forgot {
    color: #777;
    text-decoration: none;
}

.login-btn {
    width: 100%;
    height: 60px;
    border: none;
    border-radius: 6px;
    background: #f47b39;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    transition: .3s;
}

.login-btn:hover {
    background: #ea6a24;
}

.coppy-right-login {
    text-align: center;
    padding: 20px 0px;
}

.coppy-right-login {
    font-size: 15px;
    color: #1c4db2;
    font-weight: 600;
}

.coppy-right-login a {
    color: #1c4db2;
    font-size: 17px;
    text-decoration: underline;
}

@media(max-width:991px) {

    .login-wrapper {
        flex-direction: column;
        gap: 40px;
        padding: 40px 0;
    }

    .left-box,
    .right-box {
        width: 100%;
        max-width: 100%;
    }

    .title {
        font-size: 38px;
    }
}

@media(max-width:767px) {
    .banner {
        display: none;
    }

    .right-box {
        margin: 0;
    }

    .login-wrapper {
        gap: 10px;
    }
}