*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
body{
    color: #555;
}
.container{
    width: 100%;
    height:100vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url(./images/background.jpg) no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contents{
    width: 300px;
    height: 50vh;
    background: #fff;
    border-radius: 5px;
}
.title{
    width: 100%;
    height: 8vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.title h1{
    font-size: 20px;
    text-transform: uppercase;
}
.login{
    width: 100%;
    height: 42vh;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}
.form{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.form input{
    width: 200px;
    height: 40px;
    border: none;
    outline: none;
    background: rgb(243, 243, 243);
    margin: 0 0 1em 0;
    border-radius: 5px;
    padding: 0 1em;
}
.form input:focus{
    border: 0.1em solid #555;
}
.forget a{ 
    text-decoration: none;
    color: rgb(26 115 232);
    font-size: 14px;
}
.btn button{
    width: 200px;
    height: 40px;
    border: none;
    outline: none;
    background: rgb(26 115 232);
    margin: 1em 0;
    color: #fff;
    cursor: pointer;
    font-weight: bold;
    border-radius: 5px;
}
.btn button:focus{
    border: 0.1em solid #555;
}
.sign-up{
    display: flex;
    align-items: center;
}
.sign-up a{
    text-decoration: none;
    color: rgb(26 115 232);
    margin-left: 0.3em;
}