body {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo {
    height: auto;
    width: 100px;
    margin-top: 40px;
}

#loginBox {
    background-color: white;
    display: block;
    min-height: 300px;
    min-width: 300px;
    padding: 10px;
    text-align: center;
    border-radius: 1.5em;
    box-shadow: 2px 0 20px #c0c0c0;
}

#loginBox input[type='text'],
#loginBox input[type='password'],
#loginBox input[type='email'] {
    outline: 0;
    background: #f2f2f2;
    border: 0;
    margin: auto;
    margin-bottom: 10px;
    padding: 10px;
    box-sizing: border-box;
    font-size: 1em;
    display: block;
}

#loginBox input[type='submit'] {
    display: block;
    border: none;
    padding: 15px 20px;
    border-radius: 25px;
    width: 80%;
    margin: auto;
    color: white;
    font-weight: bold;
    font-size: 1em;
    margin-top: 30px;
    margin-bottom: 30px;
    background: #459ed1;
}

#loginToggle {
    display: flex;
    padding: 0 40px;
}

#loginToggle a {
    flex: 1;
    margin-bottom: 10px;
    padding: 10px;
    opacity: 0.25;
}

a:hover {
    cursor: pointer;
}

.active {
    opacity: 1 !important;
    font-weight: bold;
}

.hidden {
    display: none;
}