body{
    background-image: url('../img/bkg-home.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    font-family: "Inter", sans-serif;
    min-height: 100vh;
}

.d-none {
    display: none !important;
}

.logo{
    max-width: 100%;
    width: 320px;
}

.login .row{
    justify-content: center;
    text-align: center;
}

h1{
    font-weight: bold;
    font-size: 32px;
    color: white;
}

.login, .iframes{
    min-height: 100vh;
    align-items: center;
    display: flex;
    margin-bottom: 40px;
}

.login-form{
    width: 546px;
    max-width: 100%;
    text-align: left;
    gap: 12px;
    display: flex;
    flex-direction: column;
    margin: 24px 0;
}

.login-form label,
.login-form input,
.login-form span{
    width: 100%;
}

.login-form label{
    font-size: 18px;
    font-weight: 500;
    color: white;
    margin-bottom: 12px;
}

.login-form input{
    border: 1px solid #808080;
    height: 60px;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    border: none;
    padding: 12px;
}

.login-form button{
    background-color: #0D5494;
    width: 160px;
    padding: 12px;
    border-radius: 8px;
    border: none;
    color: white;
    font-weight: 500;
    font-size: 18px;
    margin: auto;
}

.login-form span{
    color: red;
    font-size: 14px;
    font-weight: 600;
}

.remember{
    display: flex;
    flex-direction: column;
    text-align: center;
}

.remember span{
    font-size: 16px;
    color: white;
    font-weight: 400;
}

.remember a{
    color: #00D5FF;
    text-decoration: none;
}

.iframes .container{
    width: 552px;
    max-width: 100%;
}

.iframes p{
    color: white;
    font-size: 16px;
    font-weight: 400;
    text-align: center;
}

.iframes .banner{
    width: 256px;
    max-width: 100%;
    background-color: white;
    padding: 24px;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 24px;
}

.container-iframes{
    display: flex;
    /*justify-content: space-between;*/
    justify-content: center;
}

.banner-1 img{
    width: 146px;
}

.banner-2 img{
    width: 216px;
}

.iframes .banner button{
    width: 100%;
    border-radius: 8px;
    background-color: #0D5494;
    color: white;
    font-size: 18px;
    border: none;
    min-height: 52px;
}

.iframes .banner span{
    font-size: 14px;
    font-weight: 400;
    color: #252525;
}

.iframes .container .row:nth-child(1){
    justify-content: center;
    margin-bottom: 24px;
}

@media (min-width: 612px) {
    .container-iframes {
        display: flex;
        gap: 24px;
    }
}

@media (max-width: 610px) {
    .container-iframes {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }

    body{
        background-image: url('../img/bkg-home-mobile.jpg');
    }

    .iframe{
        padding: 30px 10px;
    }
}

.icon-pass{
    width: 24px;
}

.box-pass{
    position: relative;
}    

.icon-pass{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 24px;
}

.iframe{
    max-width: 666px;
    margin: auto;
    display: flex;
    justify-content: center;
    min-height: 100vh;
    gap: 20px;
    flex-direction: column;
    padding: 20px 10px;
}

.btn-back{
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-weight: 400;
}