/* ==============================
GOOGLE FONT
================================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{

    overflow:hidden;

}

/*==============================
BACKGROUND
==============================*/

.login-page{

    position:relative;

    width:100%;

    min-height:100vh;

    background:url("../img/background.jpg");

    background-size:cover;

    background-position:center;

    background-repeat:no-repeat;

}

/*==============================
GRADASI PUTIH
==============================*/

.overlay{

    position:absolute;

    width:100%;
    height:100%;

    background:

    linear-gradient(

        90deg,

        rgba(255,255,255,.96) 0%,

        rgba(255,255,255,.88) 35%,

        rgba(255,255,255,.45) 60%,

        rgba(255,255,255,.08) 78%,

        rgba(255,255,255,0) 100%

    );

}

/*==============================
CONTAINER
==============================*/

.container-fluid{

    position:relative;

    z-index:10;

}

/*==============================
KIRI
==============================*/

.kiri{

    display:flex;

    flex-direction:column;

    justify-content:center;

    padding-left:90px;

}

/*==============================
LOGO
==============================*/

.logo{

    display:flex;

    margin-bottom:25px;

}

.logo img{

    width:70px;

    margin-right:15px;

}

/*==============================
JUDUL
==============================*/

.kiri h1{

    font-size:65px;

    font-weight:800;

    color:#0B2345;

}

.kiri h4{

    margin-top:15px;

    font-size:24px;

    color:#d49d00;

    line-height:1.5;

    font-weight:700;

}

.kiri p{

    margin-top:20px;

    width:85%;

    color:#555;

    line-height:1.8;

}

/*==============================
LABEL
==============================*/

label{

    font-weight:600;

    margin-bottom:8px;

}

/*==============================
INPUT
==============================*/

.input-group{

    margin-bottom:10px;

}

.input-group-text{

    background:#0B2345;

    color:white;

    border:none;

    border-radius:15px 0 0 15px;

    width:55px;

    justify-content:center;

}

.form-control{

    height:58px;

    border:none;

    background:white;

    box-shadow:0 8px 20px rgba(0,0,0,.08);

    border-radius:0 15px 15px 0;

}

.form-control:focus{

    box-shadow:0 0 0 .2rem rgba(244,180,0,.25);

}

/*==============================
TOMBOL LOGIN
==============================*/

.btn-login{

    width:100%;

    height:58px;

    border:none;

    border-radius:50px;

    background:#F4B400;

    color:#111;

    font-weight:700;

    font-size:17px;

    transition:.3s;

}

.btn-login:hover{

    background:#0B2345;

    color:white;

    transform:translateY(-3px);

}

/*==============================
BACK HOME
==============================*/

.back-home{

    display:inline-block;

    margin-top:30px;

    text-decoration:none;

    color:#0B2345;

    font-weight:600;

    transition:.3s;

}

.back-home:hover{

    color:#F4B400;

    transform:translateX(-5px);

}

/*==============================
KANAN
==============================*/

.kanan{

    position:relative;

}

/*==============================
GAMBAR PETUGAS
==============================*/

.petugas{

    position:absolute;

    right:40px;

    bottom:0;

    height:92%;

    animation:naikTurun 4s ease-in-out infinite;

    filter:drop-shadow(0 20px 35px rgba(0,0,0,.25));

}

@keyframes naikTurun{

0%{

transform:translateY(0);

}

50%{

transform:translateY(-12px);

}

100%{

transform:translateY(0);

}

}

/*==============================
RESPONSIVE
==============================*/

@media(max-width:992px){

body{

overflow:auto;

}

.kiri{

padding:40px;

text-align:center;

}

.logo{

justify-content:center;

}

.kiri p{

width:100%;

}

.petugas{

display:none;

}

}

@media(max-width:768px){

.kiri{

padding:30px;

}

.kiri h1{

font-size:45px;

}

.kiri h4{

font-size:18px;

}

.logo img{

width:55px;

}

}