*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins', sans-serif;
    height:100vh;
    overflow:hidden;
    background:linear-gradient(135deg,#2b1d16,#3b2a22,#1d120d);
    display:flex;
    justify-content:center;
    align-items:center;
    position:relative;
}

/* EFEITOS */

body::before{
    content:'';
    position:absolute;
    width:400px;
    height:400px;
    background:#8b5e3c;
    border-radius:50%;
    top:-150px;
    left:-120px;
    filter:blur(120px);
    opacity:.4;
}

body::after{
    content:'';
    position:absolute;
    width:350px;
    height:350px;
    background:#c49a6c;
    border-radius:50%;
    bottom:-150px;
    right:-100px;
    filter:blur(120px);
    opacity:.4;
}

/* CONTAINER */

.login-container{
    width:100%;
    max-width:1050px;
    display:flex;
    border-radius:25px;
    overflow:hidden;
    box-shadow:0 15px 50px rgba(0,0,0,.4);
    position:relative;
    z-index:10;
}

/* LEFT */

.login-left{
    width:50%;
    background:
        linear-gradient(rgba(59,42,34,.88),rgba(43,29,22,.92)),
        url('../img/church-bg.jpg');

    background-size:cover;
    background-position:center;

    color:white;
    padding:60px;
    position:relative;

    display:flex;
    align-items:center;
}

.left-content{
    position:relative;
    z-index:2;
}

.logo-box{
    width:90px;
    height:90px;
    border-radius:22px;
    background:rgba(255,255,255,.12);
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:30px;
    backdrop-filter:blur(10px);
    border:1px solid rgba(255,255,255,.1);
}

.logo-box i{
    font-size:38px;
}

.login-left h1{
    font-size:50px;
    font-weight:700;
    margin-bottom:10px;
}

.sub-title{
    display:block;
    font-size:17px;
    margin-bottom:25px;
    color:#f1d2b4;
}

.login-left p{
    font-size:15px;
    line-height:30px;
    opacity:.92;
}

/* RIGHT */

.login-right{
    width:50%;
    background:#fff;
    padding:60px 50px;
}

.login-title{
    font-size:32px;
    font-weight:700;
    color:#2b1d16;
    margin-bottom:10px;
}

.login-subtitle{
    color:#7b6b63;
    margin-bottom:35px;
}

.form-group{
    margin-bottom:20px;
}

.input-box{
    position:relative;
}

.input-box i{
    position:absolute;
    top:19px;
    left:18px;
    color:#8b5e3c;
}

.form-control{
    height:58px;
    border:none;
    background:#f5f1ee;
    border-radius:15px;
    padding-left:50px;
    font-size:15px;
    box-shadow:none !important;
}

.form-control:focus{
    border:2px solid #8b5e3c;
    background:white;
}

select.form-control{
    appearance:none;
}

/* ALERT */

.alert-login{
    background:#fdecea;
    color:#b42318;
    padding:14px;
    border-radius:12px;
    margin-bottom:20px;
    text-align:center;
}

/* EXTRA */

.extra{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:25px;
}

.extra label{
    font-size:14px;
    color:#5f534c;
}

.forgot{
    text-decoration:none;
    color:#8b5e3c;
    font-size:14px;
    font-weight:600;
}

.forgot:hover{
    text-decoration:none;
    color:#6e472a;
}

/* BUTTON */

.btn-login{
    height:58px;
    border:none;
    border-radius:15px;
    background:linear-gradient(135deg,#8b5e3c,#6e472a);
    color:white;
    font-size:16px;
    font-weight:600;
    transition:.3s;
}

.btn-login:hover{
    transform:translateY(-2px);
    background:linear-gradient(135deg,#6e472a,#8b5e3c);
    box-shadow:0 10px 25px rgba(110,71,42,.35);
    color:white;
}

/* FOOTER */

.footer-text{
    margin-top:30px;
    text-align:center;
    color:#9c8b82;
    font-size:13px;
}

/* RESPONSIVO */

@media(max-width:900px){

    body{
        padding:20px;
        overflow:auto;
    }

    .login-container{
        flex-direction:column;
    }

    .login-left,
    .login-right{
        width:100%;
    }

    .login-left{
        min-height:320px;
        padding:40px;
    }

    .login-right{
        padding:40px 30px;
    }

    .login-left h1{
        font-size:40px;
    }
}