@font-face {
    font-family: "Montserrat";
    src: url("../fonts/Montserrat-VariableFont_wght.ttf");
}
body{
    margin: 0px;
    width: 100%;
    height: 100%;
}
.contentPage{
    width: 100%;
    height: 100%;
    background-image: url("../img/login.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Montserrat", sans-serif;
}
.contentLogin{
    width: 530px;
    height: 560px;
    border-radius: 10px;
    background-color: rgb(30, 21, 125);
}
.topContentLogin{
    width: 100%;
    height: 170px;
    background-color: #3d2bfb;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}
.topContentLogin::after{
    content: '';
    position: absolute;
    bottom: -25px;
    right: 5px;
    left: 5px;
    border-width: 25px 256px 0px 256px;
    border-style: solid;
    border-color: #3d2bfb transparent transparent transparent;
}
.titleContentLogin{
    color: white;
    font-size: 30px;
    font-weight: 600;
}
.textContentLogin{
    color: white;
    font-size: 17px;
    margin-top: 8px;
}
.form{
    margin-top: 86px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.inputForm{
    width: 450px;
    margin-bottom: 16px;
}
.titleInput{
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 18px;
}
.inputForm input{
    width: 100%;
    height: 50px;
    background-color: white;
    border-radius: 4px;
    border: 0px;
    box-sizing: border-box;
    padding-left: 16px;
    padding-right: 16px;
}
.alertF{
    margin-left: 8px;
    font-size: 14px;
    color: red;
    display: none;
}
.btnForm{
    margin-top: 12px;
}
.btnForm button{
    width: 450px;
    height: 50px;
    background-color: #3d2bfb;
    border: 0px;
    border-radius: 4px;
    font-size: 18px;
    color: white;
    cursor: pointer;
    transition: all 0.4s;
}
.btnForm button:hover{
    background-color: #2815f8;
}

@media screen and (max-width: 980px){
    .contentLogin{
        width: 940px;
        height: 980px;
    }
    .topContentLogin{
        height: 280px;
    }
    .topContentLogin::after{
        border-width: 25px 400px 0px 400px;
    }
    .titleContentLogin{
        font-size: 52px;
    }
    .textContentLogin{
        font-size: 32px;
    }
    .form{
        margin-top: 184px;
    }
    .inputForm{
        width: 820px;
        margin-bottom: 42px;
    }
    .titleInput{
        font-size: 30px;
    }
    .inputForm input{
        height: 84px;
        font-size: 28px;
    }
    .alertF{
        font-size: 20px;
    }
    .btnForm{
        margin-top: 26px;
    }
    .btnForm button{
        width: 820px;
        height: 84px;
        font-size: 28px;
    }
}