* {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
body{
    background-color: #202020;
}
form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 50vw;
    margin: 0 auto;
    height: auto;
    margin-top: 15vh;
    padding: 3%;
    padding-bottom: 1%;
    background-color: rgba(100, 100, 100, 0.514);
    border: 2px solid #000000;
    border-radius: .75em;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, .5);
}
form img {
    width: 35%;
    max-width: 200px;
    padding-bottom: 2%;
}
form input{
    background-color: rgba(100, 100, 100, 0.514);
    color: #fff;
    max-height: 35px;
    height: 10vh;
    margin-bottom: 1%;
    padding: 1%;
    width: 100%;
    border: #000000 1px solid;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, .5);
    border-radius: .75em;
}

form button {
    background-color: rgba(100, 100, 100, 0.514);
    color: #fff;
    margin-bottom: 3%;
    width: 25%;
    max-height:30px;
    height: 10vh;
    border: #000000 1px solid;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, .5);
    border-radius: .75em;
    transition: all .3s ease-in-out;
    font-weight: bold;
}

form button:hover{
    background-color: #000000;
    box-shadow: 0 0 10px rgba(0, 0, 0, .5);
    transform: scale(1.03);
}

form a{
    margin: 0;
    color: #ffffff;
}

