/*
WordPress Form Style
*/

body {
    background: #f0f0f1;
    min-width: 0;
    color: #3c434a;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    font-size: 13px;
    line-height: 1.4;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}
.login-form {
    background: #fff;
    border: 1px solid #c3c4c7;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    padding: 26px 24px;
    margin-top: 20px;
    margin-bottom: 20px;
    max-width: 320px;
    width: 100%;
    border-radius: 4px;
}
h2 {
    color: #3c434a;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.3;
    margin: 0 0 24px;
    text-align: center;
}
label {
    font-size: 14px;
    line-height: 1.5;
    display: inline-block;
    margin-bottom: 3px;
    color: #3c434a;
}
input[type="password"] {
    font-size: 14px;
    width: 100%;
    padding: 3px 10px;
    margin: 0 6px 16px 0;
    min-height: 40px;
    max-height: none;
    border: 1px solid #8c8f94;
    border-radius: 3px;
    background-color: #fff;
    color: #2c3338;
    box-shadow: 0 0 0 transparent;
    outline: 0;
    transition: border-color .15s ease-in-out;
    box-sizing: border-box;
}
input[type="password"]:focus {
    border-color: #2271b1;
    box-shadow: 0 0 0 1px #2271b1;
    outline: 2px solid transparent;
}
.button {
    background: #2271b1;
    border-color: #2271b1;
    color: #fff;
    display: inline-block;
    text-decoration: none;
    margin: 0;
    padding: 0 12px;
    cursor: pointer;
    border-width: 1px;
    border-style: solid;
    border-radius: 3px;
    white-space: nowrap;
    box-sizing: border-box;
    box-shadow: 0 1px 0 #2271b1;
    font-size: 13px;
    line-height: 2.15384615;
    min-height: 30px;
    width: 100%;
    text-align: center;
}
.button:hover,
.button:focus {
    background: #135e96;
    border-color: #135e96;
    color: #fff;
}
.button:active {
    background: #135e96;
    border-color: #135e96;
    box-shadow: inset 0 2px 5px -3px rgba(0, 0, 0, 0.5);
}
.error-message {
    background: #d63638;
    border-left: 4px solid #d63638;
    padding: 12px;
    margin: -16px 0 16px 0;
    color: #fff;
    box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1);
}
@media screen and (max-height: 550px) {
    body {
        padding: 20px 0;
    }
}
@media screen and (max-width: 380px) {
    .login-form {
        margin: 20px auto;
        padding: 18px;
    }
}