*{
    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");
}

header{
    position: relative;
    display: flex;
    width: 100%;
    height: 100vh;
    justify-content: center;
    align-items: center;
}

.boxImgHeader{
    position: absolute;
    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: 2rem;
}

.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;
}

.boxPassword{
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid #000;
}

.inputLogin{
    width: 100%;
    height: 40px;
    border: none;
    border-bottom: 1px solid #000;
    font-family: "Glacial Indifference";
    background-color: transparent;
    font-size: 16px;
}


.inputLogin:focus{
    outline: none;
}

.inputPassword{
    width: 100%;
    height: 40px;
    border: none;
    font-family: "Glacial Indifference";
    background-color: transparent;
    font-size: 16px;
}

.inputPassword:focus{
    outline: none;
}

.eye{
    width: 20px;
    height: 20px;
    cursor: pointer;
    margin-left: 1rem;
}

.eyeOff{
    display: 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;
}


/*sweet alert 2*/
.swal2-title{
    font-family: "Glacial Indifference";
    font-size: 25px;
}

.swal2-html-container{
    font-family: "Glacial Indifference";
    font-size: 20px;
}

.swal2-confirm{
    background-color: rgb(31, 231, 98);
    font-family: "Glacial Indifference";
    font-size: 20px;
}


.otherOptions{
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
}

.createAccount{
    width: 100%;
    font-family: "Glacial Indifference";
    font-size: 15px;
    color: #000000bb;
    cursor: pointer;
}

.createAccount a{
    color: #000000bb;
    transition-duration: .4s;
}

.createAccount a:hover{
    color: #000;
}

.forgotPassword{
    width: 100%;
    font-family: "Glacial Indifference";
    font-size: 15px;
    color: #000000bb;
    cursor: pointer;
    margin-top: 1rem;
}

.forgotPassword a{
    color: #000000bb;
    transition-duration: .4s;
}

.forgotPassword a:hover{
    color: #000;
}

@media (max-width: 1024px) and (max-height: 1366px) {
    .formLogin
    {
        flex-wrap: wrap;
    }

    .boxLogo{
        width: 100%;
    }

    .contentInputs{
        width: 100%;
    }
}

@media (max-width: 1024px) and (max-height: 600px){
    .formLogin
    {
        flex-wrap: nowrap;
    }

    .boxLogo{
        width: 100%;
    }

    .contentInputs{
        width: 100%;
    }
}

@media (max-width: 912px) {
    .formLogin
    {
        flex-wrap: wrap;
    }

    .boxLogo{
        width: 100%;
    }

    .contentInputs{
        width: 100%;
    }
}

@media (max-width: 540px) {

    header{
        align-items: flex-start;
    }

    .formLogin{
        width: 90%;
        margin-top: 10rem;
    }
    
    .logojtp{
        width: 100px;
    }

    .forAdmins{
        font-size: 15px;
    }

    .titleLogin{
        font-size: 20px;
    }

    .inputLogin, .inputPassword{
        font-size: 14px;
    }

    .eye{
        width: 15px;
        height: 15px;
    }

    .btnLogin{
        width: 100px;
        height: 30px;
        font-size: 15px;
    }

    .otherOptions{
        row-gap: 10px;
    }

    .createAccount, .forgotPassword{
        font-size: 12px;
        margin: 0;
    }


}