html, body {
    margin: 0;
    padding: 0;
}

* {
    font: normal 14px / 25px "Source Sans Pro", Helvetica, Arial, Verdana, sans-serif;
    color: #60511b;
    font-weight: 400;
}

#login-page {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100vh;
    background: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
}

.login-modal {
    position: absolute;
    width: 400px;
    max-width: 80%;
    left: 50%;
    top: 44%;
    transform: translate(-50%, -50%);
}

.login-image {
    width: 100%;
    margin-bottom: 42px;
}

#loginform {
    width: 80%;
    margin-left: 10%;
}

.login-text-fields input {
    width: calc(100% - 16px);
    padding: 8px;
    margin: 6px 0;
    border: 1px solid rgba(0, 0, 0, 0.5);
    outline: none;
    font-size: 16px;
    border-radius: 4px;
}

.login-checkbox {
    display: inline-block;
}

.login-checkbox input {
    -webkit-appearance: none;
    -moz-appearance: none;
    -o-appearance: none;
    appearance: none;
    height: 18px;
    width: 18px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.5);
    font-size: 16px;
    vertical-align: middle;
    border-radius: 2px;
    cursor: pointer;
    position: relative;
}

.login-checkbox input:checked:before {
    padding: 2px;
    content: '\2713';
    font-size: 17px;
    line-height: 7px;
    color: #fff;
    font-weight: 400;
    top: 4px;
    position: absolute;
}

.login-checkbox input:checked {
    background: #60511b;
}

.login-checkbox--label {
    cursor: pointer;
}

#loginform label {
    vertical-align: middle;
}

#loginform input[type="submit"] {
    width: 100%;
    height: 38px;
    background: #60511b;
    border: none;
    color: #fff;
    border-radius: 4px;
}

#loginform input[type="submit"]:hover {
    cursor: pointer;
    background: #69591f;
}

#loginform input:focus {
    outline: none;
}

.login-error {
    color: rgb(255, 70, 70);
}