/* San Francisco Pro Text */
@font-face {
    font-family: 'San Francisco Pro Text';
    font-style: normal;
    font-weight: 400;
    src: url('assets/fonts/san-francisco-pro-text/SFProText-Regular.ttf') format('ttf');
}

/* Oswald */
@font-face {
    font-family: 'Oswald';
    font-style: normal;
    font-weight: 600;
    src: url('assets/fonts/oswald/oswald-v53-latin-600.woff2') format('woff2');
}

/* body / .login */
.login {
    background-image: url("assets/images/login-backdrop.jpg");
    background-color: transparent;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    font-family: 'San Francisco Pro Text', sans-serif;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

#login {
    max-width: 400px;
    width: 100%;
    padding-top: 0;
}

#login #nav,
#login #nav a{
    text-align: center;
    color: #000;
    text-decoration: underline;
    font-size: 1rem;
}

.login h1 a {
    background-image: url("assets/images/concept-family-logo.svg");
    height: 130px;
    width: 130px;
    background-size: 130px 130px;
    background-repeat: no-repeat;
    padding-bottom: 30px;
}

.login form {
    margin-top: 40px;
    margin-left: 0;
    padding: 0;
    font-weight: 400;
    overflow: revert;
    background: transparent;
    border: none;
    box-shadow: none;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.login form > *:first-child,
.login form > *:nth-child(2) {
    grid-column: 1 / span 2;
}

.login form label[for="user_login"],
.login form label[for="user_pass"] {
    display: none;
}

.wp-pwd {
    min-width: 320px;
}

.login .button.wp-hide-pw {
    display: none !important;
}

.login form .input,
.login input[type=password],
.login input[type=text] {
    font-size: 1rem;
    line-height: 1;
    vertical-align: middle;
    display: inline-block;
    width: 100%;
    height: 42px;
    min-width: 320px;
    border-width: 0;
    border-radius: 0;
    padding: 5px 10px;
    margin: 20px 0 0 0;
    min-height: 40px;
    max-height: none;
    color: #ec6730;
}

#user_login::placeholder,
#user_pass::placeholder {
    color: #ec6730;
    font-size: 1rem;
    position: relative;
    font-family: 'San Francisco Pro Text', sans-serif;
}

.user-pass-wrap {
    margin-bottom: 20px;
}

.forgetmenot {
    display: flex;
    align-items: center;
    color: #000;
}

.forgetmenot label {
    font-size: 1rem;
}

#rememberme {
    height: 24px;
    width: 24px;
    border: none;
    border-radius: 0;
    margin-right: 10px;
}

input[type=checkbox]:checked::before {
    margin: 0 0.75rem 0 0;
    width: 1.5rem;
    height: 1.5rem;
}

#wp-submit {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 1.5rem;
    color: #fff;
    background-color: #000;
    padding: 10px 30px;
    border-radius: 0;
    border: none;
    line-height: 1;
}

#backtoblog {
    display: none;
}

#lostpasswordform {
    display: flex;
    flex-direction: column;
}

#lostpasswordform #wp-submit {
    margin-top: 20px;
    width: 100%;
}