body{
    margin: 0px;
    width: 100%;
    height: 100%;
}
.contentPage{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: linear-gradient(to left, #41729f, #274472);
    font-family: sans-serif;
    overflow-y: auto;
}
.form{
    width: 390px;
    height: 490px;
    background-color: white;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.titleForm{
    margin-top: 64px;
    font-size: 30px;
    font-weight: 600;
}
.inputsForm{
    margin-top: 78px;
    width: 85%;
}
.inputForm{
    margin-bottom: 52px;
    width: 100%;
}
.inputForm input{
    width: 100%;
    border: 0px;
    border-bottom: 2px solid rgb(187, 187, 187);
    padding: 0px 4px 12px 4px;
    color: rgb(145, 145, 145);
    font-size: 18px;
    transition: all 0.6s;
}
.inputForm input:focus{
    border-bottom: 2px solid #2A4346;
    outline: none;
}
.btnForm{
    margin-top: 36px;
    width: 85%;
}
.btnForm button{
    width: 100%;
    height: 58px;
    color: white;
    background-image: linear-gradient(to left, #41729f, #274472);
    font-size: 20px;
    font-weight: 600;
    border: 0px;
    cursor: pointer;
    transition: all 0.4s;
}
.btnForm button:hover{
    background-color: #41729f;
}
.alertF{
    margin-top: 4px;
    text-align: center;
    font-size: 14px;
    color: red;
    display: none;
}

@media screen and (max-width: 980px){
    .form{
        width: 810px;
        height: 620px;
        border-radius: 20px;
    }
    .titleForm{
        font-size: 46px;
    }
    .inputForm input{
        height: 58px;
        border-bottom: 4px solid rgb(187, 187, 187);
        font-size: 36px;
    }
    .btnForm button{
        height: 78px;
        font-size: 38px;
    }
    .alertF{
        font-size: 28px;
        font-weight: 600;
        margin-top: 10px;
    }
}