@import "../../Public.css";
@import "Header.css";
/*------------------------*/
.MainContent{
    width: 100%;
}
.MainContent .Form .Submit{
    margin: 15px auto 5px auto;
}
.MainContent .Form .FormGroup{
    text-align: center;
}
.FormDivision{
    width: 80%;
    display: block;
    margin: auto auto 6px auto;
    text-align: center;
}
.CheckBox{
    display: block;
    margin: auto;
}
.MainContent .Form .Input{
    width: 100%;
    direction: ltr;
}
.FormDivision#ActivementDivision span{
    font-size: 10px;
    font-weight: 900;
    color: rgb(0,55,115);
}
.FormDivision#ActivementDivision button{
    display: block;
    font-size: 10px;
    font-weight: 900;
    text-align: center;
    outline: none;
    border: none;
    border-radius: 10px;
    padding: 8px;
    margin: 5px auto auto auto;
    color: rgb(245,245,245);
    background-color: rgb(0,75,155);
    cursor: pointer;
    transition: 0.2s;
}
.FormDivision#ActivementDivision button:hover{
    color: rgb(255,255,255);
    background-color: rgb(0,85,175);
}
/*----------------------------------------------Media Queries--------------------------------------------------*/
@media screen and (min-width: 640px){
    .Form{
        width: 576px;
    }
}
@media screen and (max-width: 640px) {
    .Form{
        width: 92%;
    }
}
@media screen and (max-width: 480px){
    .FormTitle h1{
        font-size: 18px;
        margin-top: 8px;
    }
    .FormTitle img{
        width: 56px;
        height: 56px;
    }
    .Submit{
        font-size: 12px;
    }
    .FormAlert{
        font-size: 9px;
    }
    .InputLabel{
        font-size: 12px;
    }
    .InputIcon{
        width: 14px;
        height: 14px;
    }
}
@media screen and (max-width: 385px){
    .FormLabel{
        font-size: 11px;
    }
    .InputLabel{
        font-size: 11px;
    }
    .InputIcon{
        width: 12px;
        height: 12px;
    }
    .Input{
        font-size: 11px;
    }
}
@media screen and (max-width: 255px){
    .FormTitle h1{
        font-size: 16px;
        margin-top: 6px;
    }
    .FormTitle img{
        width: 48px;
        height: 48px;
    }
    .FormLabel{
        font-size: 10px;
    }
    .InputLabel{
        font-size: 9px;
    }
    .InputIcon{
        width: 10px;
        height: 10px;
    }
    .Input{
        font-size: 10px;
    }
}
@media screen and (max-width: 200px){
    .FormTitle h1{
        font-size: 14px;
        margin-top: 2px;
    }
    .FormTitle img{
        width: 36px;
        height: 36px;
    }
}
