.logo {
    max-width: 300px;
}

.login-card {
    background: linear-gradient(45deg, #fefefe -20%, #ededed);
    border-radius: 20px;
    padding: 1em 3em;
    box-shadow: 10px 10px 10px rgba(0,0,0,0.1);
}

.login-card-header {
    font-size: 1.5em;
    font-weight: 500;
    margin-bottom: 1em;
}

.login-card-body {

}

.login-card-footer {
    display: flex;
    flex-direction: column;
    justify-items: center;
    align-items: center;
    margin: 2em 0;
}

.login-label {
    width: 100%;
    margin: 0 0 .5em 0;
    display: flex;
    justify-items: center;
    align-items: center;
}

.login-form {
    outline: none;
    border: none;
    border-radius: 10px;
    padding: 10px;
    width: 100%;
}

.login-btn {
    font-size: 1.2em;
    width: 90%;
    background: #00a0e9;
    padding: .5em;
    color: white;
    border: none;
    box-shadow: 5px 5px 5px rgba(0,0,0,0.1);
    margin-bottom: 1em;
}

a, a:hover {
    color: #00a0e9;
    text-decoration: none;
}