@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
}
.container{
    width: 100%;           
    height: 100vh;
    background: url(img/night.jpg) no-repeat center center;
    background-size: cover;
    position: relative;
}
nav{
    display: flex; 
    justify-content: space-between;
    padding: 30px 50px;
}
.logo{
    font-size: 35px;
    font-weight: 700;
    color: white;
    cursor: pointer;
}
.menu{
    list-style-type: none;
}
.menu li{
    display: inline-block;
    font-size: 17px;
    font-weight: 500;
}
.menu li a{
    padding: 7px 10px;
    display: block;
    text-decoration: none;
    color: white;
}
.menu li button{
    border: none;
    background: transparent;
    color: white;
    font-size: 17px;
    font-weight: 500;
    border: 1px solid white;
    padding: 5px 13px;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.5s;
}
.menu li button:hover{
    background: white;
    color: #000;
}
.login{
    width: 350px;
    background: rgba(226, 211, 211, 0.5);
    box-shadow: 0 0 20px 5px black;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    padding: 20px;
    border-radius: 10px / 20px;
}
.login .text{
    text-align: center;
    font-size: 30px;
    color: #272727;
    padding: 10px 0;
    font-weight: 600;
}
.login .icon{
    position: relative;
}
.login .icon i{
    position: absolute;
    left: 4%;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #2c3e50;
    border-right: 1px solid #2c3e50;
    padding-right: 7px;
}
.login input{
    margin: 15px 0;
    accent-color: midnightblue;
    font-size: 16px;
}
.login input[type="email"],.login input[type="password"]{
    padding: 10px 10px 10px 42px;
    width: 100%;
    outline: none;
    border: 1px solid #222;
    border-radius: 5px;
    color: #272525;
}
.login input[type="submit"]{
    display: block;
    padding: 10px 20px;
    width: 100%;
    background: #2c3e50;
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: 500;
    margin: 15px 0;
    cursor: pointer;
}
.login .reg{
    text-align: center;
    margin-block: 10px;
    font-weight: 500;
}
.login .reg a{
    text-decoration: none;
    color: #083969;
    font-style: italic;
}