*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Work sans", sans-serif;
}
body{
    background: url(../image/pexels-diana-agapova-7150991.jpg);
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
}
/*---------------SECTION HERO--------------*/
.first-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.2% 4%;
    background-color:#000;
    opacity: 0.3;
}
.first-header a{
    color: white;
    text-decoration: none;
    font-size: 12px;
}
.first-header span{
    margin-right: 80px;
}
.navigation{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color:#000;
    padding: 0px 3%;
    width: 100%;
    opacity: 0.6;
}
nav ul li{
    list-style: none;
    display: inline-block;
    margin-left: 15px;
    width: 15%;
}
nav ul li a{
    text-decoration: none;
    color: #fff;
}
nav ul li a:hover{
    border-bottom:2px solid #fff;
}
.nav-items{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-right: 3%;
    background-color:#000;
}
.like a{
    color: #fff;
    margin: 27px;
}
.shopping-bag a{
    color: #fff;
    margin: 20px;
}
.search span input{
    border: 1px solid #fff;
    padding: 2px;
}
.search span input:hover{
    color: white;
}
figure img{
    margin-left:-20%;
}
.fa-heart,.fa-bag-shopping{
    transition: transform 0.3s ease;
    transform: translateX(0px);
}
.fa-bag-shopping:hover{
    transform: translateX(10px);
}
.fa-heart:hover{
    transform: translateX(10px);
}
figure img{
    margin-left:30px;
}
/*----------FINISH-SECTION-HERO-------------*/
/*------------START-LOGIN-FORM-BOX--------------*/
.form-box{
    position: absolute;
    background-color: aquamarine;
    top:60%;
    left: 50%;
    width: 90%;
    max-width: 450px;
    transform: translate(-50%,-50%);
    background: #fff;
    padding: 50px 60px 70px;
    text-align: center;
}
.form-box h1{
    font-size: 30px;
    margin-bottom: 60px;
    color:#000;
    position: relative;
}
.input-field{
    background:#eaeaea;
    margin: 15px 0;
    border-radius: 3px;
    display: flex;
    align-items: center;
    max-height: 65px;
    transition: max-height 0.5s;
    overflow: hidden;
}
input{
    width: 100%;
    background: transparent;
    border:0;
    outline: 0;
    padding: 18px 15px;
}
.input-field i{
    margin-left: 15px;
    color: #9999;
}
form p{
    text-align: left;
    font-size: 13px;
}
form p a{
    text-decoration: none;
    color: #3c00a0;
}
.btn-field{
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}
.btn-field button{
    flex-basis: 48%;
    background: #000;
    color: #fff;
    height: 40px;
    border-radius: 20px;
    border: 0;
    outline: 0;
    cursor: pointer;
    transition: background 1s;
}
.input-group{
    height: 280px;
}
.btn-field button.disable{
    background: #eaeaea;
    color:#555;
}
.btn-enter{
    margin-left: 25%;
    border-bottom: 1px solid black;
    padding: 2px 15px;
    color: #000;
}
.btn-enter:hover{
    background-color: #555;
    border-radius: 10px;
    color: #fff;
}
/*------------FINISH-LOGIN-FORM-BOX--------------*/