*{
    margin: 0;
    padding: 0;
    font-family: "popins" sans-serif;
    box-sizing: border-box;
}
.container{
    width: 100%;
    height: 100vh;
    background-image:linear-gradient(rgba(9,0,77,.65),rgba(9,0,77,.65)),url(/background.png) ;
    background-position: center;
    background-size: cover;
    padding: 10px 8%;
}
nav{
    width: 100%;
    display: flex;
align-items: center;
justify-content: space-between;
padding: 10px 0;

}

.logo{
    width: 80px;
    cursor: pointer;
}
nav h2{
    font-size: 15px;
    width: 200px;
    padding: 5px 10px;
    text-align: center;
    color: #fff;
}
nav ul {
    list-style: none;
    width: 100%;
    width: 100%;
    text-align: right;
    padding-right: 60px;
    
}
nav ul li {
    display: inline-block;
    margin: 10px 20px;
}
nav ul li a{
    color: #fff;
    text-decoration: none;

}
.btn{
    display: flex;
    align-items: center;
    padding: 10px 20px;
    border: 0;
    outline: 0;
    border-radius: 5px;
    background: #f5168d;
    color: #fff;
    font-weight: 500;
    cursor: pointer;
}
.btn img{
    width: 20px;
    margin-right: 10px;
}

.content{

    margin-top: 14%;
    color: #fff;
    max-width: 620px;
}
.content h1{
    font-size: 70px;
    font-weight: 600;
    line-height: 85px;
    margin-bottom: 25px;
}
form{
    display: flex;
    align-items: center;
    background-color: #fff;
    border-radius: 5px;
    padding: 10px;margin-top: 30px;
}

form input{
    outline: 0;
    border: 0;
    width: 100%;
    font-size: 16px;
    padding-left: 10px;

}
.content form .btn{
    font-size: 15px;
    padding: 10px 30px;
}