  html,
body{
    height:100%;
}

body{
    display:flex;
    flex-direction:column;
    min-height:100vh;
}

main{
    flex:1;
}

.p-3\.5 {
  padding: 0.875rem;
}

.login-wrapper{
    min-height:100vh;
    display:flex;
    align-items:center;
    position:relative;
    overflow:hidden;

    background:
        linear-gradient(
            rgba(0, 158, 73, .88),
            rgba(0, 88, 40, .88)
        ),
        url('{{ asset("img/background-finance-bf.png") }}');

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

/* PANNEAU GAUCHE */

.left-panel{
    color:#fff;
    padding:60px;
}

.left-panel .logo{
    width:100px;
    margin-bottom:30px;
    animation:float 4s ease-in-out infinite;
}

.left-panel h2{
    font-size:42px;
    font-weight:800;
    color:#FFD60A;
    margin-bottom:20px;
}

.subtitle{
    font-size:18px;
    line-height:1.8;
    color:rgba(255,255,255,.92);
    max-width:500px;
}

.decor{
    margin-top:40px;
}

.decor span{
    display:inline-block;
    width:14px;
    height:14px;
    margin-right:12px;
    border-radius:50%;
}

.decor span:nth-child(1){
    background:#EF2B2D;
}

.decor span:nth-child(2){
    background:#FFD60A;
}

.decor span:nth-child(3){
    background:#009E49;
}

/* CARTE CONNEXION */

.login-card{
    background:rgba(255,255,255,.15);
    backdrop-filter:blur(15px);
    border:1px solid rgba(255,255,255,.2);
    border-radius:25px;
    padding:45px;
    box-shadow:0 15px 40px rgba(0,0,0,.15);
}

.title{
    color:#fff;
    font-weight:700;
    font-size:32px;
}

/* INPUTS */

.form-control{
    border:none;
    border-radius:12px;
    padding:14px;
    background:rgba(255,255,255,.95);
}

.form-control:focus{
    box-shadow:0 0 0 3px rgba(255,214,10,.35);
}

/* LABELS */

label{
    color:#fff;
    margin-bottom:8px;
    font-weight:600;
}

/* CHECKBOX */

.form-check-label{
    color:#fff;
}

/* BOUTON */

.btn-login{
    background:#D62828;
    border:none;
    padding:12px 28px;
    border-radius:12px;
    color:#fff;
    font-weight:700;
    transition:.3s;
}

.btn-login:hover{
    background:#b91c1c;
    transform:translateY(-2px);
}

/* LIENS */

.forgot-link{
    color:#FFD60A;
    text-decoration:none;
    font-weight:600;
}

.forgot-link:hover{
    text-decoration:underline;
    color:#fff;
}

/* ANIMATION */

@keyframes float{
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-10px);
    }
}

/* RESPONSIVE */

@media(max-width:992px){

    .login-wrapper{
        padding:20px;
    }

    .login-card{
        padding:30px;
    }

    .title{
        font-size:26px;
    }

}