html, body {
    /*height: 100%;*/
    /*margin: 0;*/
    /*overflow-y: auto;*/
}

/* =======================
   WRAPPER
======================= */

root {
    --input: #0d2f77 !important;
}

.login-wrapper {
    position: relative;
    min-height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to right, #149c68, var(--primary) 180%);
    background-image: url(../img/bg.jpg) !important;
    background-size: cover;
    overflow-y: auto;
}

    /* Overlay */

    .login-wrapper::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(rgba(255, 255, 255, 0.87) 5%, rgba(255, 255, 255, 0.85) 95%);
        z-index: 0;
    }

/* =======================
   CONTAINER LOGIN
======================= */

.login-content {
    position: relative;
    z-index: 1;
    width: 600px;
    background-color: #f8f8f8;
    border-radius: 30px;
    box-shadow: 0 0 100px 0 rgba(2, 38, 60, 0.54);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    flex-shrink: 0;
    height: auto;
}

/* =======================
   HEADER
======================= */

.header-login {
    position: relative;
    min-height: 248px;
    background-image: url(../img/bg.jpg) !important;
    background-size: cover;
}

    .header-login::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(rgba(12, 16, 82, 0.91) 5%, rgba(11, 55, 119, 0.88) 95%);
    }

    .header-login img {
        position: relative;
        width: auto;
        height: 100px;
        top: 38px;
    }

/* =======================
   FORM
======================= */

.content-form {
    position: relative;
    z-index: 1;
    margin-top: -78px !important;
    padding: 40px;
    background-color: #ffffff;
    border-radius: 80px 0 0 0;
}

    /* =======================
   BUTTON
======================= */

    .content-form .btn-login {
        background-color: #0d2f77;
        color: #f1f1f1;
        border-radius: 10px;
        padding: 10px;
        height: 56px;
    }


/* =======================
   MOBILE
======================= */

@media (max-width: 720px) {
    .header-login {
        height: 320px;
    }
}

@media (max-width: 720px) {
    .header-login img {
        height: 110px;
        top: 65px;
    }
}

@media (max-width: 720px) {
    .login-content {
        width: 100%;
        border-radius: 0;
        flex: 1;
        background-color: #FFF;
    }
}

@media (max-width: 720px) {
    .content-form {
        width: 100%;
        border-radius: 80px 0 0 0;
    }
}

.form-floating .form-control:focus {
    box-shadow: 0 0 0 2px #0d2f77;
    border-color: transparent;
}

.form-floating .form-control:focus ~ label {
    color: #0d2f77;
    background-color: transparent !important;
    background: transparent !important;
}

.form-floating.has-icon .form-control {
    padding-left: 44px !important;
}

.form-floating.has-icon label {
    margin-left: 30px !important;
    background-color: transparent !important;
    background: transparent !important;
}

.form-floating.has-icon i {
    position: absolute;
    top: 19px;
    left: 10px;
    font-size: 18px;
    z-index: 9999;
}

.form-floating > .form-control-plaintext ~ label::after, .form-floating > .form-control:focus ~ label::after, .form-floating > .form-control:not(:placeholder-shown) ~ label::after, .form-floating > .form-select ~ label::after {
    background-color: transparent !important;
}
