body {
    display: flex;
    flex-direction: column;
    align-items: center ;
    font-family: "Nunito Sans", arial, sans-serif;
}

.container {
    padding-top: 5em;
    display: flex;
    min-width: 260px;
    max-width: 640px;
}

.container .logo-container {
    width: 16em;
}

.container .logo-container img {
    width: 100%;
}

.form-container {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    padding: 2em;
    border: 1px solid #1E2533;
    border-radius: 5px;
    margin-left: 3.5em;
}

form.login-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

input {
    padding: 0.75em;
    margin-bottom: 1em;
    border-radius: 5px;
    border: 1px solid #1E2533;
    font-size: 16px;
}

input[type="submit"] {
    border: 1px solid #057fda;
    background-color: #057fda;
    color: #fff;
    cursor: pointer;
}

.divider {
    padding: 1em;
    position: relative;
    display: flex;
    justify-content: center;
}

.divider::before,
.divider::after {
    content: "";
    position: absolute;
    top: 50%;
    width: calc(50% - 1em);
    height: 1px;
    background-color: #1E2533;
}

.divider::before {
    left: 0px;
}

.divider::after {
    right: 0px;
}

#google-signin-btn {
    display: flex;
    align-items: center;
    height: 2.5em;
    border: 1px solid #1E2533;
    border-radius: 5px;
    padding-bottom: 0px;
    text-decoration: none;
    color: #1E2533;
    font-size: 16px;
}

.alert.alert-error {
    font-size: 12px;
    color: #ED8936;
}

.copyright {
    padding: 2em;
    color: #CAD3E5;
    font-size: 12px;
}
