*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-image: url("../img/bg.jpg");
    background-size: cover;
    background-position: center;
    height: 100vh;
}
.fm-box{
    background-color: #FAFAFA;
    padding: 40px 100px;
    width: 46%;
    margin: 50px auto;
    border-radius: 10px;
}
.fm-logo{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
}
.fm-logo img {
    width: 180px;
}
.form-lang span {
    font-size: 16px;
    text-decoration: underline;
}
.fm-box1{
    margin: 14px 0;
}
.fm-box1 h1 {
    font-size: 27px;
    font-weight: 500;
}
.fm-box1 p{
    font-size: 18px;
    margin: 8px 0;
}
.inpBox{
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
    border: 1px solid #000;
    border-radius: 3px;
    margin-top: 25px;
}
.boxInp {
    width: 95%;
}
.inpBox input{
    width: 95%;
    padding: 15px 10px;
    border: none;
    font-size: 15px;
}
.inpBox input:focus{
    outline: none;
}
.inpBox img{
    padding-right: 10px;
}
.iconBox {
    width: 5%;
    margin-left: 20px;
}
.remeb{
    display: flex;
    align-items: center;
    margin-top: 10px;
    margin-bottom: 20px;
}
.remeb label {
    font-size: 16px;
}
.btnBoxs{
    margin-top: 30px;
    margin-bottom: 60px;
}
.btnBoxs button{
    width: 100%;
    height: 50px;
    background-color: #d62215;
    border: none;
    border-radius: 5px;
    font-family: inherit;
    color: #fff;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    transition: all .2s ease-in-out;
}
.username{
    font-weight: 600;
    font-size: 17px;
}
.btnBoxs{
    padding-bottom: 30px;
    border-bottom: 1px solid #e0dede;
}
.usemain{
    position: absolute;
    transform: translate(10px, 10px);
    font-weight: 600;
    color: #363636;
}
.error{
    background-color: #fff6f3;
    width: 100%;
    border: 1px solid #ca3e00;
    padding: 20px;
    margin-bottom: 10px;
}

.hide{
    display: none;
}
.veriBox{
    display: flex;
}
.veriBox img {
    margin-right: 10px;
}

.boxPin{
   display: flex;
   
}
.boxPin input{
    width: 90%;
    padding: 18px 20px;
    margin-left: 10px;
    font-family: inherit;
    font-size: 15px;
}
.boxPin{
    margin: 20px 0;
}

@media screen and (max-width: 945px){
    .fm-box {
        width: 60%;
    }
}
@media screen and (max-width: 828px){
    .fm-box {
        width: 90%;
    }

}

@media screen and (max-width: 600px){
    body{
        background-image: unset;
    }
    .fm-box{
         width: 95%;
        position: unset;
        top: unset;
        left: unset;
        transform: unset;
        padding: 20px 30px;
        margin: 0;
    }


}