/* Meadowlark sitewide password screen */

html,
body.login {
    min-height: 100%;
    background: #f7f5ef;
}

body.login {
    box-sizing: border-box;
    margin: 0;
    padding: 0 16px;
    font-family: Arial, Helvetica, sans-serif;
}

/* Main centered wrapper */
#login {
    box-sizing: border-box;
    width: 460px;
    max-width: 100%;
    margin: 0 auto;
    padding: 64px 0 48px;
}

/* Meadowlark logo */
#login h1 a {
    width: 360px;
    max-width: 100%;
    height: 135px;
    margin: 0 auto 28px;
    background-image: url("https://meadowlarkmill.com/wp-content/uploads/2026/06/MFM-logo-hand-drawnweb.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

/* Welcome content */
.meadowlark-login-intro {
    margin-bottom: 18px;
}

.meadowlark-login-intro h2 {
    margin: 0 0 10px;
    color: #3f5f36;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.35;
}

.meadowlark-login-intro p {
    margin: 0;
    color: #3f3f3f;
    font-size: 15px;
    line-height: 1.55;
}

/* Login form */
#loginform {
    box-sizing: border-box;
    width: 100%;
    margin: 0;
    padding: 36px;
    background: #ffffff;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

/* Password label */
#loginform label {
    color: #333333;
    font-size: 14px;
    font-weight: 600;
}

/* Password wrapper */
#loginform .wp-pwd {
    margin-top: 8px;
}

/* Password input */
#loginform input[type="password"],
#loginform input[type="text"].password-input {
    box-sizing: border-box;
    width: 100%;
    min-height: 50px;
    padding: 10px 44px 10px 12px;
    border: 1px solid #9c9c9c;
    border-radius: 0;
    background: #ffffff;
    box-shadow: none;
    font-size: 18px;
}

#loginform input[type="password"]:focus,
#loginform input[type="text"].password-input:focus {
    border-color: #4a9fa5;
    box-shadow: 0 0 0 1px #4a9fa5;
    outline: none;
}

/* Show-password button */
#loginform .wp-hide-pw {
    min-width: 44px;
    height: 50px;
    border: 0;
    background: transparent;
    box-shadow: none;
    color: #4a9fa5;
}

/* Remember me */
#loginform .forgetmenot {
    float: none;
    margin: 16px 0 0;
}

#loginform .forgetmenot label {
    font-weight: 400;
}

/* Submit row */
#loginform .submit {
    float: none;
    margin: 18px 0 0;
}

/* Enter wholesale store button */
#loginform .button-primary {
    float: none;
    box-sizing: border-box;
    width: 100%;
    min-height: 50px;
    padding: 12px 20px;
    background: #4a9fa5;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.1em;
    line-height: 1.4;
    text-align: center;
    text-shadow: none;
    text-transform: uppercase;
}

#loginform .button-primary:hover,
#loginform .button-primary:focus {
    background: #397f84;
    border: 0;
    box-shadow: none;
    color: #ffffff;
}

/* Retail link below the form */
.meadowlark-retail-link {
    margin-top: 22px;
}

.meadowlark-retail-link p {
    margin: 0 0 10px;
    color: #333333;
    font-size: 14px;
    line-height: 1.5;
}

.meadowlark-retail-button {
    display: block;
    box-sizing: border-box;
    width: 100%;
    min-height: 50px;
    padding: 14px 20px;
    background: #4a9fa5;
    color: #ffffff !important;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.1em;
    line-height: 1.4;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
}

.meadowlark-retail-button:hover,
.meadowlark-retail-button:focus {
    background: #397f84;
    color: #ffffff !important;
}

/* Error and status messages */
#login_error,
.login .message {
    box-sizing: border-box;
    width: 100%;
    margin-bottom: 20px;
    border-left: 4px solid #4a9fa5;
    box-shadow: none;
}

/* Hide WordPress login clutter */
#nav,
#backtoblog,
.privacy-policy-page-link,
.language-switcher {
    display: none !important;
}

/* Mobile */
@media (max-width: 480px) {
    body.login {
        padding: 0 12px;
    }

    #login {
        width: 100%;
        padding: 22px 0 32px;
    }

    #login h1 a {
        width: 220px;
        max-width: 85%;
        height: 90px;
        margin-bottom: 18px;
    }

    .meadowlark-login-intro h2 {
        font-size: 19px;
    }

    .meadowlark-login-intro p {
        font-size: 14px;
    }

    #loginform {
        padding: 24px 20px;
    }

    #loginform input[type="password"],
    #loginform input[type="text"].password-input {
        min-height: 48px;
        font-size: 16px;
    }

    #loginform .wp-hide-pw {
        height: 48px;
    }

    #loginform .button-primary,
    .meadowlark-retail-button {
        min-height: 48px;
        padding: 13px 16px;
        font-size: 13px;
        line-height: 1.35;
    }

    .meadowlark-retail-link {
        margin-top: 18px;
    }
}