@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Roboto:wght@400;900&family=Sacramento&display=swap');

body{
    margin:0;
    font-family: 'Roboto', sans-serif;
    overflow: hidden;
}


.main-login{
    width: 100vw;
    height: 80vh;
    background-image: url(/static/image/fundo.jpg);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    
}

.left-login{
    width: 50vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

}

.left-login > h1 {

    color: rgba(14, 61, 138);
    font-family: 'Sacramento', cursive;
    font-size: 3vw;

}

.leaft-login-img{

    width: 25vw;
}

.right-login{

    width: 50vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;

}

.card-login{


    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 30px 35px;
    background: linear-gradient(rgba(14, 61, 138), rgba(118, 184, 55));
    border-radius: 20px;



}
/* 
.card-login::before, .card-login::after{
    content: '';
    position: absolute;
    z-index: -1;
    width: calc(20% + 85px);
    height: calc(61% + 65px);
    border-radius: 8px;
    background: linear-gradient(45deg,#153d88,rgba(118, 184, 55),#021f55,rgb(106, 253, 172),#00ced1, #88eff7,rgb(17, 255, 9),
    #153d88,rgba(118, 184, 55),#769de7,rgb(159, 247, 76), #88eff7,rgb(17, 255, 9),#78b785);
    background-size: 300%;
    animation: Animarborda 8s linear infinite;

}

@keyframes Animarborda {
    0%{
        background-position: 0;
    }
    100%{
        background-position: 300%;
    }

}

.card-login::after{
    filter:blur(70px);
    animation: AnimaBlur 8s linear infinite;
}
    @keyframes AnimaBlur {
        0%{
            background-position: 0;
        }
        100%{
            background-position: 300%;
        }
    
    } */


.card-login > h1 {

    color: white;
    font-weight: 800;
    margin: 0;
}


.textfield {
    width:100% ;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    margin: 10px;

}

.textfield > input{

    width: 100%;
    border: none;
    border-radius: 10px;
    padding: 15px;
    color: black;
    font-size:12pt ;
    box-shadow: 0px 10px 40px rgb(20, 20, 20);
    outline: none;
    box-sizing: border-box;

}

.textfield > label {

    color: white;
    margin-bottom: 10px;
}

.btn-login{

    width: 100%;
    padding: 16px 0px ;
    margin: 25px;
    border: none;
    border-radius: 8px;
    outline: none;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 3px;
    color:#0E3D8A ;
    cursor: pointer;
    box-shadow: 0px 10px 40px -12px  rgb(20, 20, 20) ;
}


.btn-login:hover{

    background-color: #24f151;

}

footer {
    margin-top: 30px;
    text-align: center;
    position: fixed;
    width: 100% !important;
    bottom: 5px;    
}


.title > img {

    width: 250;
    height: 100px;
    padding-left: 40%;

}


