.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);
    min-width: 30em;
}

.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: 6em;
    margin: 0;
    display: flex;
    justify-items: center;
    align-items: center;
}

.login-form {
    outline: none;
    border: none;
    border-radius: 10px;
    padding: 10px;
    width: calc(100% - 6em);
}

.form-group {
    display: flex;
    flex-wrap: wrap;
}

.login-btn {
    font-size: 1.2em;
    width: 70%;
    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;
}