/*==================================================
    GESEMSYS HR & PAYROLL
    Login Page
==================================================*/

@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;
}

body{
    font-family:'Poppins',sans-serif;
    background:#eef3f9;
    overflow-x:hidden;
}

/*==============================
Illustration
==============================*/

.illustration{

    background:
    linear-gradient(rgba(16,62,145,.85),rgba(18,94,214,.85)),
    url("../img/logo.png");

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    display:flex;
    justify-content:center;
    align-items:center;

    color:#fff;

    position:relative;
}

.overlay{

    width:80%;
    animation:fadeLeft .8s ease;
}

.logo{

    width:90px;
    margin-bottom:40px;
}

.overlay h1{

    font-size:42px;
    font-weight:700;
}

.overlay h2{

    font-size:30px;
    font-weight:300;

    margin-bottom:30px;
}

.overlay p{

    font-size:18px;

    line-height:1.8;
}

/*==============================
Login
==============================*/

.login-side{

    background:#f5f7fb;

    display:flex;

    justify-content:center;

    align-items:center;

    position:relative;
}

.login-box{

    width:100%;

    max-width:470px;

    background:#fff;

    padding:45px;

    border-radius:20px;

    box-shadow:

    0 10px 35px rgba(0,0,0,.08);

    animation:fadeRight .8s ease;
}

.login-logo{

    width:90px;
}

.login-box h3{

    font-weight:700;

    color:#123d91;
}

.login-box p{

    color:#6b7280;
}

/*==============================
Inputs
==============================*/

.form-label{

    font-weight:600;

    color:#334155;
}

.input-group{

    border-radius:12px;

    overflow:hidden;
}

.input-group-text{

    background:#edf4ff;

    border:none;

    color:#2563eb;

    width:55px;

    justify-content:center;
}

.form-control{

    border:none;

    background:#f8fafc;

    height:55px;

    font-size:15px;

    box-shadow:none;
}

.form-control:focus{

    background:#fff;

    box-shadow:none;
}

.btn-light{

    border:none;

    background:#edf4ff;
}

/*==============================
Button
==============================*/

.btn-login{

    height:55px;

    border-radius:12px;

    font-weight:600;

    font-size:17px;

    transition:.3s;
}

.btn-login:hover{

    transform:translateY(-2px);

    box-shadow:

    0 8px 20px rgba(37,99,235,.35);
}

/*==============================
Links
==============================*/

a{

    text-decoration:none;
}

a:hover{

    text-decoration:none;
}

/*==============================
Footer
==============================*/

footer{

    position:absolute;

    bottom:25px;

    width:100%;

    text-align:center;

    color:#64748b;

    font-size:14px;
}

/*==============================
Checkbox
==============================*/

.form-check-input{

    cursor:pointer;
}

.form-check-label{

    cursor:pointer;
}

/*==============================
Animation
==============================*/

@keyframes fadeLeft{

    from{

        opacity:0;

        transform:translateX(-50px);
    }

    to{

        opacity:1;

        transform:none;
    }

}

@keyframes fadeRight{

    from{

        opacity:0;

        transform:translateX(50px);
    }

    to{

        opacity:1;

        transform:none;
    }

}

/*==============================
Responsive
==============================*/

@media(max-width:991px){

    .login-side{

        padding:40px 20px;
    }

    .login-box{

        padding:35px;
    }

    footer{

        position:relative;

        margin-top:30px;
    }

}

@media(max-width:576px){

    .login-box{

        padding:25px;

        border-radius:15px;
    }

    .login-logo{

        width:70px;
    }

    .btn-login{

        height:50px;
    }

}
/*==============================
Focus
==============================*/

.input-group{

    transition:.25s;
}

.input-group.shadow{

    box-shadow:0 0 0 .25rem rgba(37,99,235,.20);

    border-radius:12px;
}

/*==============================
Spinner
==============================*/

.spinner-border{

    width:18px;

    height:18px;
}

body {
    background: #f7f9fc !important;
    font-family: 'Segoe UI', sans-serif !important;
    color: #333 !important;
}

.modal {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.brandlogo {
    width: 10rem !important;
    height: 4rem !important;
}

.modal-content {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}

.close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
}