*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


@font-face {
    font-family: "Glacial Indifference";
    src: url("../../ASSETS/FONTS/GlacialIndifference/GlacialIndifference-Regular.otf");
}

@font-face {
    font-family: "Brittany";
    src: url("../../ASSETS/FONTS/Brittany/BrittanySignature.ttf");
}

body{
    position: relative;
}


header{
    position: relative;
    display: flex;
    width: 100%;
    height: 100vh;
    justify-content: center;
    align-items: center;
}

.boxImgHeader{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.imgHeader{
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(.5);
}

.formLogin{
    display: flex;
    width: 70%;
    height: auto;
    background-color: #fff;
    z-index: 100;
    padding: 1rem;
}

.boxLogo{
    display: flex;
    flex-direction: column;
    width: 50%;
    justify-content: center;
    align-items: center;
}

.logojtp{
    width: 200px;
}


.forAdmins{
    margin-top: 1rem;
    font-family: "Glacial Indifference";
    font-size: 17px;
}

.contentInputs{
    display: flex;
    width: 50%;
    flex-wrap: wrap;
    padding: 1rem;
    justify-content: center;
    align-items: center;
}

.titleLogin{
    width: 100%;
    font-size: 30px;
    font-family: "Brittany";
    text-align: center;
}

.boxInputs{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    align-items: center;
}


.inputLogin{
    width: 100%;
    height: 40px;
    border: none;
    border-bottom: 1px solid #000;
    font-family: "Glacial Indifference";
    background-color: transparent;
    font-size: 16px;
    margin-bottom: 2rem;
}


.inputLogin:focus{
    outline: none;
}


#reason{
    width: 100%;
    height: 50px;
    border: none;
    border-bottom: 1px solid #000;
    font-family: "Glacial Indifference";
    background-color: transparent;
    font-size: 16px;
    margin-bottom: 2rem;
    resize: none;
}

#reason:focus{
    outline: none;
}

.btnLogin{
    width: 150px;
    height: 40px;
    border: 1px solid #000;
    background-color: transparent;
    color: #000;
    cursor: pointer;
    font-family: "Glacial Indifference";
    transition-duration: .4s;
    font-size: 17px;
}

.btnLogin:hover{
    background-color: #000;
    color: #fff;
}

.otherOptions{
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
}

.haveAccount{
    width: 100%;
    font-family: "Glacial Indifference";
    font-size: 15px;
    color: #000000bb;
    cursor: pointer;
}

.haveAccount a{
    color: #000000bb;
    transition-duration: .4s;
}

.haveAccount a:hover{
    color: #000;
}

#messageApplication, #emailErrorMessage{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
    z-index: 100;
    background-color: #fff;
    padding: 1rem;
    font-family: "Glacial Indifference";
    font-size: 30px;
}
