*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body{
    width: 100%;
    font-family: 'Inter';
}

header{
    width: 100%;
    background: #1c449b;
    display: flex;
    justify-content: space-between;
    padding: 15px 20px;
}

.menu{
    display: none;
}

.top{
    display: flex;
    align-items: center;
    gap: 30px;
}

.top img{
    cursor: pointer;
}

.middle{
    display: flex;
    align-items: center;
    color: #fff;
}

.middle input{
    width: 300px;
    height: 40px;
    border-radius: 5px;
    padding-left: 5px;
    font-size: 16px;
    border: none;
}

.middle p{
    padding-right: 10px;
    font-size: 15px;
    font-weight: 600;
}

.middle i{
    background: #008000;
    padding: 11px 10px;
    border-radius: 5px;
    cursor: pointer;
}

.down{
    display: flex;
    align-items: center;
    color: #fff;
    gap: 30px;
}

.down img{
    cursor: pointer;
}

.down i{
    cursor: pointer;
    transform: scale(1.5);
}

.search{
    display: none;
}

.contain{
    background: #f5f5f5;
    display: flex;
    align-items: center;
    padding: 10px 20px;
    gap: 10px;
    width: 100%;
}

.contain .home{
    transform: scale(1.2);
    cursor: pointer;
}

.contain .home:hover{
    color: #1c449b;
}

.contain ul{
    display: flex;
    list-style: none;
    gap: 20px;
}

.contain ul li{
    padding: 10px 10px;
    cursor: pointer;
}

.contain ul li i{
    transform: scale(0.7);
}

.contain ul li:hover{
    color: #1c449b;
}

.container{
    width: 730px;
    padding-inline: 20px;
    padding-top: 30px;
    background: #fff;
}

.container h1{
    font-size: 20px;
    margin-bottom: 30px;
    width: 200px;
}

.center span{
    color: #008000;
    font-weight: 600;
}

label{
    font-size: 13px;
    font-weight: 600;
}

.form{
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.input-box{
    display: flex;
    flex-direction: column;
    line-height: 20px;
}

.field{
    margin-top: 5px;
}

.field input{
    width: 270px;
    height: 40px;
    border-radius: 5px;
    padding-left: 3px;
}

.field input::placeholder{
    font-size: 12px;
}

.butt{
    display: flex;
    align-items: end;
}

.btn{
    padding: 10px 20px;
    border-radius: 5px;
    color: #fff;
    background: #008000;
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
}

.btn:hover{
    background: #006000;
}

.forget{
    font-size: 13px;
    text-decoration: underline;
    color: #585858;
    cursor: pointer;
}

.sign{
    display: none;
}

@media (max-width: 765px){
    .top{
        gap: 10px;
    }
    .down{
        gap: 10px;
    }
    .down i{
        transform: scale(1);
    }
    .envp{
        width: 25px;
        height: 20px;
    }
    .logo{
        width: 80px;
        height: 44px;
    }
    .menu{
        display: block;
    }
    .middle{
        display: none;
    }
    .search{
        display: block;
    }
    .contain{
        display: none;
    }
    .container{
        width: 100%;
    }
    .form{
        display: flex;
        flex-direction: column;
    }
    .field input{
        width: 100%;
    }
    .btn{
        width: 100%;
    }
    .forget{
        text-align: center;
    }
    .sign{
        margin-top: 20px;
        display: block;
        text-align: center;
        font-size: 13px;
        text-decoration: underline;
        color: #585858;
        cursor: pointer;
        margin-bottom: 20px;
    }

}