body{
    margin: 0px;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.contentPage{
    width: 100%;
    height: 100%;
    background-image: linear-gradient(135deg, rgb(182, 182, 182), rgb(255, 255, 255));
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: sans-serif, Arial;
}
.contentForm{
    width: 400px;
    height: 440px;
    background-color: white;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 1px 1px 12px 0px rgb(167, 167, 167);
}
.logo{
    margin-bottom: 20px;
}
.logo img{
    width: 150px;
    height: 150px;
    object-fit: contain;
}
.form{
    margin-top: 20px;
    width: 90%;
}
.inputForm{
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
    width: 100%;
    font-size: 16px;
}
.inputForm input{
    width: 100%;
    height: 42px;
    font-size: 16px;
    background-color: transparent;
    border: 1px solid rgb(211, 211, 211);
    border-radius: 8px;
    margin-top: 8px;
    box-sizing: border-box;
    padding-left: 12px;
    padding-right: 12px;
}
.inputForm input:focus{
    outline: none;
}
.alertF{
    margin-top: 4px;
    margin-left: 12px;
    font-size: 14px;
    color: red;
    display: none;
}
.btnForm{
    width: 100%;
}
.btnForm button{
    width: 100%;
    height: 42px;
    background-color: black;
    border: 0px;
    border-radius: 8px;
    color: white;
    font-size: 16px;
    cursor: pointer;
}

@media screen and (max-width: 980px){
    .contentForm{
        width: 860px;
        height: 760px;
    }
    .logo img{
        width: 320px;
        height: 320px;
    }
    .inputForm{
        font-size: 32px;
        margin-bottom: 28px;
    }
    .inputForm input{
        height: 64px;
        font-size: 32px;
        padding-left: 20px;
        padding-right: 20px;
    }
    .alertF{
        font-size: 24px;
    }
    .btnForm button{
        height: 64px;
        font-size: 32px;
    }
}