@import url('https://fonts.googleapis.com/css2?family=Montserrat+Alternates:wght@400;700&display=swap');

body{
    margin: 0;
    padding: 0;
}

div#generalContainer {
    width: 100%;
    height: 100%;
    display: flex;
    position:absolute;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-image:url('../../img/bgLogin.svg') ;
    background-size: 100%;
    background-repeat: no-repeat;
}

img#loginHeaderImage{
    width: 446px;
    height:112px;
    /* margin: auto 300px; */
    margin-top: 50px;
}

div#login{
    width: 453px;
    height: 490px;
    margin: auto auto;
    left: 0;
    right: 0;
    display:flex;
    background-color: #1E1E1E;
}

form#formLogin{
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-top:0;
}

/* fieldset.formLoginField{
    box-sizing: border-box;
    width: 453px;
    height: 73px;
    left: 0px;
    top: 188px;
    background: #FFFFFF;
    border: 3px solid #454545;
    border-radius: 10px;
    font-family: 'Montserrat Alternates';
    font-weight: 400;
} */

div.formLoginContainer{
    width: 100%;
    display: flex;
    align-items:center;
    border-bottom: 2px solid #FFFFFF;
    margin-bottom: 54px;
}

img.loginFieldIcon{
    width: 20px;
    height: 20px;
    margin: 0 10px;
    cursor: pointer;
}

input.inputLogin{
    width: calc(100% - 50px);
    padding-left: 10px;
    height: 30px;
    border: none;
    background-color: transparent;
    color: #454545;
    margin-top: 0;
    outline: none;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 29px;
}

.formTittle{
    width: 100%;
    text-align: left;
    /* margin-top: 0; */
    /* line-height: 10px; */
    font-family: 'Montserrat Alternates';
    color: #fff;
    font-size: 48px;
    margin-bottom: 0px;
}

div#loaderLoginContainer{
    width: 50px;
    height: 50px;
    margin: 10px auto;
    margin-bottom: 5px;
    /* border: 1px solid red; */
}

.loader{
    width: 100%;
    height: 100%;
    border: 2px solid #586368;
    border-left: none;
    border-radius: 50%;
}

.loaderAnimation{
    animation: girar 1s infinite;
}

button#buttonLogin{
    width: 100%;
    height:49px;
    margin:20px auto;
    outline: none;
    border: none;
    background-color: #101E5A;
    color: white;
    border-radius:10px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    font-family: 'Montserrat Alternates';
    font-weight: 400;
}

button#buttonLogin:hover{
    transform: scale(0.95);
}

p#loginConsole{
    width: 100%;
    margin-top:5px;
    margin-bottom: 10px;
    text-align: left;
    font-family: 'Montserrat Alternates';
    color: red;
}

@keyframes girar {
    0%{
        rotate: 0deg;
    }

    50%{
        rotate:180deg;
    }

    100%{
        rotate: 360deg;
    }
    
}

