body {
    background-position:center;
    background-size:cover;
    background-repeat:no-repeat;
    min-height:100vh;
    position:relative;
    font-family: 'Lato', sans-serif;
}

body:before {
    content: "";
    display: block;
    background: #ffffff7a;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
}

body .container {
    position:relative;
    z-index:2;
    max-width:1000px;
}

body .form {
    min-height:100vh;
}

.body-login {
    padding: 40px;
    background: linear-gradient(335deg, rgba(41,41,0,0.7) 0%, rgba(41,41,41,0.9) 40%);
    color: #fff;
    border-radius:20px;
    width:100%;
}

.body-login .inner-body-login {}

.sosmed-button {
    display:flex;
    justify-content:space-evenly;
}

.sosmed-button .sosmeds {
    color:#000;
    background-color:#fff;
    width: 45px;
    height:45px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
}

.sosmed-button .sosmeds svg {
    width:25px;
    height:25px;
}

.block {
    background-color: #ad7600;
    text-align: center;
    padding: 10px 0;
    margin-right: -40px;
}

h1, h2, h3, h4, h5 {
    font-family: 'Merriweather', serif;
}

.form-login {
    display: flex;
    align-items: center;
    gap:7px;
    background-color:#fff;
    padding:7px 10px;
    border-radius:20px;
}

.form-login i.lock {
    color: rgb(231, 230, 230);
    cursor: pointer;
}

.form-login i.lock.show,
.form-login i {
    color: rgb(107, 107, 107)
}



.form-login input {
    flex-basis:100%;
   
}

.form-login input,
.form-login input:-webkit-autofill,
.form-login input:focus {
    background:none;
    border:none;
    outline: none;
    box-shadow: none;
    padding: 0 10px;
}

input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active{
    -webkit-text-fill-color: inherit;
    -webkit-box-shadow: 0 0 0px 1000px #eee inset;
    transition: background-color 5000s ease-in-out 0s;
}

.btn.btn-three {
    display:flex;
    justify-content:center;
    align-items:center;
    width:100%;
    border-radius: 25px;
    background: linear-gradient(191.13deg, #FAEC9C -45.36%, #BC8D43 98.91%);
    color: #FFFFFF;
    font-family: 'Merriweather', serif;
    gap:10px;
    transition: .3s all ease-in;
    font-size:var(--fs-14);
}

.btn-three:hover {
    background: linear-gradient(91.13deg, #BC8D43 -45.36%, #FAEC9C 98.91%);
    box-shadow: 1px 2px 15px #FAEC9C, -1px 2px 10px #BC8D43;
}

.btn-three.btn-three i {
    transition: .3s all ease-in;
}

.btn-three:hover.btn-three i {
    transform: rotateZ(-25deg);
}

.frm.abs {
    position:absolute;
    bottom:0;
    left:50px;
    right:50px;
}

.about-us {
    position: fixed;
    z-index: 90;
    bottom: 20px;
    right: 20px;
    width: 35px;
    height: 35px;
    background: linear-gradient(191.13deg, var(--gradient-start), var(--gradient-end)); /* Gradien latar belakang */
    border-radius: 50%;
}

.about-us > svg {
    width: 25px;
    height: 25px;
    display: block;
    position: relative;
    right: -5px;
    top: 3px;
}

@media (max-width: 500px) {
    body .form {
        margin-left: -15px;
        margin-right: -15px;
    }
    .block {
        background:none;
        margin-right:0;
    }
    .body-login {
        display: flex;
        flex-direction: column;
        justify-content: center;
        min-height: 100vh;
        border-radius: 0;
    }
    .frm.abs {
        position: static;
    }

    .offcanvas-header {
        position: relative;
    }
    
    .button-close {
        position: absolute;
        right: 10px;
    }

    .offcanvas.offcanvas-start {
        background: linear-gradient(335deg, rgba(41, 41, 0, 0.7) 0%, rgba(41, 41, 41, 1.9) 45%);
        color: #fff;
    }
    
    .offcanvas-header {
        border-bottom: 1px solid #ddd;
    }
}