/* Extracted CSS from bookproofs.php for [photographer-login] shortcode */
/* General body styling for login page context */
/* Note: These might be overridden by theme styles, focusing on the box itself */
body {
    /* background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); */ /* Avoid overriding theme background */
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
/* Style the main container */
.bp-login-container {
    height: 100vh;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    overflow: hidden;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100%;
    display: flex; /* Use flexbox on container for centering */
    justify-content: center;
    align-items: center;
    padding: 20px; /* Add padding for smaller viewports */
    box-sizing: border-box;
}
.bp-login-content {
     /* Removed styles as container handles centering now */
     width: 100%; /* Ensure content takes width within container */
}
/* Style the login box */
.bp-login-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%; /* Let container control width via padding */
    max-width: 500px;
    text-align: center;
    background-color: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    box-sizing: border-box;
    margin: 0 auto; /* Center box if container is wider */
}
/* Style the logo */
.bp-login-logo {
    width: 100%; /* Changed from 300px */
    max-width: 100%; /* Changed from 80% */
    height: auto !important;
    display: block;
    margin: 0 auto 30px;
    object-fit: contain;
}
/* Style the heading */
.bp-login-heading {
    font-size: 26px;
    margin: 0 0 25px;
    color: #333;
    font-weight: 500;
}
/* Style the error message */
.bp-login-error {
    background-color: #fff8f8;
    border-left: 4px solid #e74c3c;
    padding: 12px 15px;
    margin-bottom: 25px;
    width: 100%;
    box-sizing: border-box;
    text-align: left;
    border-radius: 4px;
    color: #e74c3c;
    font-weight: 500;
}
/* Style the form */
.bp-login-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
    width: 100%;
}
/* Style input groups */
.bp-login-input-group {
    position: relative;
    width: 100%;
}
/* Style the input fields */
.bp-login-input {
    padding: 15px 14px;
    font-size: 16px;
    border-radius: 6px;
    border: 1px solid #ddd;
    width: 100%;
    box-sizing: border-box;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.bp-login-input:focus {
    outline: none;
    border-color: #000;
    box-shadow: 0 0 0 2px rgba(0,0,0,0.1);
}
/* Style the submit button */
.bp-login-submit {
    padding: 15px 14px;
    font-size: 17px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    font-weight: 500;
    margin-top: 10px;
    box-sizing: border-box;
}
.bp-login-submit:hover {
    background: #333 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* --- Responsive Styles --- */
@media (max-width: 600px) {
    .bp-login-box {
        padding: 30px 20px; /* Reduce padding */
    }
    .bp-login-logo {
        /* Removed fixed width: 200px; to inherit 100% */
        margin-bottom: 20px;
    }
    .bp-login-heading {
        font-size: 22px;
        margin-bottom: 20px;
    }
    .bp-login-form {
        gap: 15px;
    }
     .bp-login-input, .bp-login-submit {
        padding: 14px;
        font-size: 15px;
    }
     .bp-login-submit {
         font-size: 16px;
     }
}