@import url('https://fonts.googleapis.com/css?family=Open+Sans&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Genos', sans-serif;
    font-size: 1.2rem;
}

body{
    min-height: 100vh;
    width: 100%;
    background: linear-gradient(#333 0%, whitesmoke 40%);    
}

.header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 25px 13%;
    background: #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    border-bottom: 1px solid whitesmoke;
}

.navbar a{
    position: relative;
    font-size: 18px;
    color: whitesmoke;
    margin-right: 30px;
    text-decoration: none;
}

.navbar a::after{
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: whitesmoke;
    bottom: -5px;
    border-radius: 5px;
    transform: translateY(10px);
    opacity: 0;
    transition: .5s ease;
}

.navbar a:hover:after{
    transform: translateY(0);
    opacity: 1;
}


.navbar img {
    height: 70px;
    width: 270px;
    position: relative;
    text-decoration: none;
    padding-right: 60px;
    
}


.search-bar{
    width: 250px;
    height: 40px;
    background-color: transparent;
    border: 1px solid whitesmoke;
    border-radius: 6px;
    display: flex;
    align-items: center;
}

.search-bar input{
    width: 100%;
    background-color: transparent;
    border: none;
    outline: none;
    color: whitesmoke;
    font-size: 16px;
    padding-left: 10px;
}

.search-bar button{
    width: 40px;
    height: 100%;
    background: transparent;
    outline: none;
    border: none;
    color: whitesmoke;
    cursor: pointer;
}

.search-bar input::placeholder{
    color: lightgray;
}

/** HT suggests 22px here **/
.search-bar button i{
    font-size: 18px;
}

/** search icon reaction **/
.search-bar button:hover{
    transform: scale(1.2);
    transition: ease;
}

/** logo font size **/
h2 i{
    font-size: 20px;
}

/** added to style Login icon in navbar **/
.navbar i{
    font-size: 20px;
    margin-right: 2px;
}

.container{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 75%;
    height: 450px;
    margin-top: 73px;
    margin-left: 22px;
    background: darkcyan;
    border-radius: 20px;
}

.item{
    position: absolute;
    top: 0;
    left: 0;
    width: 58%;
    height: 100%;
    color: whitesmoke;
    background: transparent;
}

.text-item{
	padding-left: 15px;
	padding-top: 25px;
}

.item .logo{
	font-size: 30px;
	padding-left: 15px;
	padding-top: 10px;
}



.footer .text p{
    font-size: 1rem;
    display: flex;
    justify-content: center;
    text-align: center;
}

