/* ==========================================================================
   FeastCMS - Development Password Protection Styles
   ========================================================================== */

.fc-password-form-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: #f1f1f1;
    padding: 2rem;
    box-sizing: border-box;
}

.fc-password-form {
    width: 100%;
    max-width: 400px;
    background: #ffffff;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-radius: 6px;
    font-family: "Open Sans", sans-serif;
    text-align: center;
}

.fc-password-form h2 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #111;
}

.fc-password-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: left;
}

.fc-password-form label {
    font-weight: 600;
    font-size: 14px;
    color: #444;
}

.fc-password-form input[type="password"] {
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    width: 100%;
    box-sizing: border-box;
}

.fc-password-form button {
    padding: 12px;
    background: #ff4033;
    border: none;
    border-radius: 4px;
    color: #fff;
    font-weight: bold;
    font-size: 14px;
    cursor: pointer;
    text-transform: uppercase;
    transition: background 0.2s ease-in-out;
}

.fc-password-form button:hover {
    background: #e2392d;
}

.fc-password-error {
    color: #d00;
    font-weight: bold;
    text-align: center;
    margin-top: -10px;
}
