* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Abel', sans-serif;
}

header {
    align-items: center;
    background-image: url("../images/login-background.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    height: 100vh;
    justify-content: center;
    width: 100%;
    user-select: none;
}

.main {
    text-align: center;
}

.main img {
    padding-bottom: 5px;
}

.main h1 {
    color: #000000;
    font-family: 'Roboto', sans-serif;
    font-size: 30px;
    margin: 20px;
}

.main hr {
    border-top: 1px solid #000000;
    margin: auto;
    width: 60%;
}

.main input {
    background: transparent;
    border: none;
    border-bottom: 2px solid #666C6D;
    font-family: 'Abel', sans-serif;
    font-size: 18px;
    margin: 20px 0;
    outline: none;
    padding: 2%;
    width: 90%;
}

.main button {
    background-color: #0385AE;
    border: none;
    border-radius: 40px;
    color: #ffffff;
    cursor: pointer;
    font-size: 18px;
    padding: 5% 10%;
}

.main button:hover {
    background-color: #2CC2E5;
}

.main a {
    color: #666C6D;
    font-size: 16px;
    text-decoration: none;
}

.main a:hover {
    color: #000000;
    font-size: 16px;
    text-decoration: none;
}

@media screen and (max-width: 800px) {
    
    header {
    align-items: center;
    background-image: url(none);
    height: 80vh;
    }
    
    .main input {
    color: #000000;
}
}