/* =========================
   GLOBAL
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    min-height:100vh;
    background: linear-gradient(
        135deg,
        #E85D04,
        #F48C06,
        #FFD60A
    );
    display:flex;
    justify-content:center;
    align-items:center;
}

/* =========================
   LOGIN CONTAINER
========================= */

.login-wrapper{
    width:100%;
    max-width:1100px;
}

.login-card{
    background:rgba(255,255,255,0.12);
    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);

    border-radius:25px;
    overflow:hidden;

    box-shadow:
    0 20px 50px rgba(0,0,0,.25);

    min-height:650px;
}

/* =========================
   LEFT SIDE
========================= */

.left-side{
    background:
    linear-gradient(
        135deg,
        rgba(232,93,4,.95),
        rgba(244,140,6,.95)
    );

    color:white;
    padding:60px;
    position:relative;
}

.left-side::before{
    content:'';
    position:absolute;
    width:350px;
    height:350px;
    background:rgba(255,255,255,.08);
    border-radius:50%;
    top:-120px;
    right:-120px;
}

.left-side::after{
    content:'';
    position:absolute;
    width:250px;
    height:250px;
    background:rgba(255,255,255,.05);
    border-radius:50%;
    bottom:-80px;
    left:-80px;
}

.logo{
    width:120px;
    margin-bottom:30px;
}

.brand-title{
    font-size:4rem;
    font-weight:800;
    margin-bottom:20px;
}

.brand-line{
    width:80px;
    height:4px;
    background:white;
    border-radius:10px;
    margin-bottom:30px;
}

.brand-desc{
    max-width:400px;
    line-height:1.8;
    font-size:15px;
}

/* =========================
   RIGHT SIDE
========================= */

.right-side{
    display:flex;
    justify-content:center;
    align-items:center;
    padding:40px;
    background:rgba(255,255,255,.08);
}

.login-box{
    width:100%;
    max-width:400px;

    background:rgba(255,255,255,.15);
    backdrop-filter:blur(10px);

    border-radius:20px;

    padding:40px;
}

.login-title{
    text-align:center;
    color:white;
    font-weight:700;
    margin-bottom:30px;
}

.form-label{
    color:white;
    font-size:14px;
    font-weight:500;
}

.form-control{
    border:none;
    border-radius:30px;
    padding:12px 20px;
}

.form-control:focus{
    box-shadow:none;
    border:2px solid #FFD60A;
}

.btn-login{
    width:100%;
    border:none;

    background:
    linear-gradient(
        90deg,
        #FFD60A,
        #E85D04
    );

    color:white;
    font-weight:600;

    padding:12px;

    border-radius:30px;

    transition:.3s;
}

.btn-login:hover{
    transform:translateY(-2px);
    box-shadow:
    0 10px 25px rgba(232,93,4,.4);
}

/* =========================
Button eye
========================= */
.password-wrapper{
    position:relative;
}
.password-wrapper .form-control{
    padding-right:70px;
}
.password-wrapper i{
    position:absolute;
    top:50%;
    right:18px;
    transform:translateY(-50%);
    cursor:pointer;
    color:#777;
    font-size:18px;
    transition:.3s;
}
.password-wrapper i:hover{
    color:#E85D04;
}

/* =========================
COPYRIGHT
========================= */

.copyright{
    text-align:center;
    color:white;
    font-size:13px;
    margin-top:15px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width:991px){

    .left-side{
        padding:40px;
        text-align:center;
    }

    .brand-title{
        font-size:3rem;
    }

    .brand-line{
        margin:auto;
        margin-bottom:20px;
    }

    .brand-desc{
        margin:auto;
    }
}

@media (max-width:768px){

    .login-card{
        min-height:auto;
    }

    .left-side{
        padding:30px;
    }

    .right-side{
        padding:30px;
    }

    .brand-title{
        font-size:2.5rem;
    }

    .logo{
        width:90px;
    }
}

@media (max-width:576px){

    body{
        padding:15px;
    }

    .left-side{
        display:none;
    }

    .right-side{
        padding:20px;
    }

    .login-box{
        padding:25px;
    }
}