/* Wrapper */
.password-wrapper {
    display: block;
    width: 100%;
    overflow: hidden;
}

/* Left side - form */
.password-container {
    display: block;
    width: 50%;
    float: left;
		min-height: 525px;
    padding: 60px 40px;
    background-color: #f0f0f0;
    text-align: center;
    box-sizing: border-box;
    overflow: hidden;
		position: relative;
}

.password-container h2 {
    font-size: 24px;
    font-weight: 600;
    color: #222;
    margin-bottom: 8px;
}

.password-container p.subtitle {
    font-size: 13px;
    color: #888;
    margin-bottom: 30px;
}

.password-container label {
    display: block;
    text-align: left;
    font-size: 14px;
    color: #333;
    margin-bottom: 6px;
    width: 100%;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
}

.password-container label span {
    color: red;
}

/* Input */
.password-container #passwordInput {
    display: block;
    width: 100%;
    max-width: 280px;
    padding: 10px 12px;
    margin: 0 auto 20px auto;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 15px;
    box-sizing: border-box;
    background-color: #fff;
}

.password-container #passwordInput:focus {
    outline: none;
    border-color: #aaa;
}

/* Button */
.password-container button {
    display: block;
    width: 100%;
    max-width: 280px;
    padding: 10px;
    margin: 0 auto;
    background-color: #ffffff;
    color: #333;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.password-container button:hover {
    background-color: #e8e8e8;
}

/* Error */
.password-container .error-message {
    color: #d63638;
    margin-top: 15px;
    font-size: 14px;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
		position: absolute;
	  text-align: center;
}

/* Right side - image */
.password-image {
    display: block;
    width: 50%;
    float: left;
		min-height: 525px;
    background-image: url('https://feed.org.ph/wp-content/uploads/2026/02/environmental-conservation-plant-sustainability-2-copy-1.jpg');
    background-size: cover;
    background-position: center;
    box-sizing: border-box;
		overflow: hidden;
		position: relative;
}

/* Clearfix */
.password-wrapper::after {
    content: '';
    display: table;
    clear: both;
}

/* Footer */
.password-footer {
    position: fixed;
    bottom: 10px;
    width: 100%;
    text-align: center;
    font-size: 12px;
    color: #888;
}

.input-wrapper {
    position: relative;
    width: 100%;
    max-width: 280px;
    margin: 0 auto 20px auto;
}

.input-wrapper #passwordInput {
    width: 100%;
    padding: 10px 40px 10px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 15px;
    box-sizing: border-box;
    background-color: #fff;
    margin: 0;
}

.input-wrapper #eyeIcon {
    position: absolute;
    right: 10px;
    top: 35%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #888;
    font-size: 16px;
    line-height: 1;
    user-select: none;
}

#post-50694 .entry-title {
		display: none;
}

/* =====================
   TABLET (max-width: 768px)
   ===================== */
@media only screen and (max-width: 768px) {
    .password-container {
        width: 100% !important;
        float: none !important;
        min-height: auto !important;
        padding: 50px 30px !important;
    }

    .password-image {
        width: 100% !important;
        float: none !important;
        min-height: 250px !important;
    }

    .password-container h2 {
        font-size: 22px !important;
    }

    .password-container #passwordInput,
    .input-wrapper #passwordInput {
        max-width: 100% !important;
    }

    .input-wrapper {
        max-width: 100% !important;
    }

    .password-container label {
        max-width: 100% !important;
    }

    .password-container button {
        max-width: 100% !important;
    }

    .password-container .error-message {
        max-width: 100% !important;
        position: static !important;
        margin-top: 12px !important;
    }
}

/* =====================
   MOBILE (max-width: 480px)
   ===================== */
@media only screen and (max-width: 480px) {
    .password-container {
        padding: 40px 20px !important;
        min-height: auto !important;
    }

    .password-container h2 {
        font-size: 20px !important;
        margin-bottom: 6px !important;
    }

    .password-container p.subtitle {
        font-size: 12px !important;
        margin-bottom: 24px !important;
    }

    .password-container label {
        font-size: 13px !important;
    }

    .password-container #passwordInput,
    .input-wrapper #passwordInput {
        font-size: 14px !important;
        padding: 9px 10px !important;
    }

    .password-container button {
        font-size: 14px !important;
        padding: 10px !important;
    }

    .password-image {
        min-height: 200px !important;
    }

    .password-footer {
        font-size: 11px !important;
        bottom: 8px !important;
    }

    .input-wrapper #eyeIcon {
        font-size: 15px !important;
        right: 8px !important;
    }
}

/* =====================
   SMALL MOBILE (max-width: 360px)
   ===================== */
@media only screen and (max-width: 360px) {
    .password-container {
        padding: 30px 16px !important;
    }

    .password-container h2 {
        font-size: 18px !important;
    }

    .password-image {
        min-height: 180px !important;
    }
}

/* ============================================
   FUJIFILM DASHBOARD
   ============================================ */

.fd { font-family: Arial, sans-serif; max-width: 860px; margin: 0 auto; padding: 1rem 0 3rem; color: #333; }
.fd h2 { font-size: 20px; margin: 2rem 0 1rem; color: #1a1a18; }
.fd hr { border: 1px solid black; margin: 1.5rem 0; }

/* Regular tables — collapse borders (no double lines) */
.fd table { width: 100%; border-collapse: collapse; font-family: Arial, sans-serif; margin-bottom: 1rem; }
.fd th { text-align: left; padding: 12px; border-bottom: 2px solid #333; font-size: 13px; letter-spacing: 1px; color: #555; }
.fd td { padding: 15px 12px; border-bottom: 1px solid #ddd; font-size: 16px; color: #333; }
.fd .total-row td { background-color: #f0f7f0; border-top: 2px solid #2c7a2c; border-bottom: 2px solid #2c7a2c; font-weight: bold; color: #2c7a2c; font-size: 18px; }

/* Stat table only — separate borders for rounded cards */
.fd .stat-table { border-collapse: separate; border-spacing: 6px; }
.fd .stat-table td { background: #f0f7f0; border: 1px solid #c8e6c0; border-radius: 12px; text-align: center; padding: 28px 20px; color: #333; vertical-align: middle; border-bottom: 1px solid #c8e6c0; }
.fd .stat-table .stat-num { font-size: 64px; font-weight: bold; color: #1a7a1a; display: block; line-height: 1; }
.fd .stat-table .stat-label { font-size: 13px; text-transform: uppercase; letter-spacing: 0.1em; color: #555; display: block; margin-bottom: 10px; }
.fd .stat-table .stat-sub { font-size: 13px; color: #666; display: block; margin-top: 8px; }
.fd .stat-table .stat-num-sm { font-size: 42px; font-weight: bold; color: #1a7a1a; display: block; line-height: 1; }
.fd .stat-table td[colspan="2"] { width: 100%; }
.fd .stat-table tr:last-child td { width: 50%; }

.fd .map-wrap { border-radius: 8px; overflow: hidden; border: 1px solid #ddd; margin-bottom: 0.5rem; }
.fd .map-wrap iframe { display: block; width: 100%; height: 340px; border: 0; }
.fd .map-coords { font-size: 12px; color: #888; font-family: monospace; margin-top: 6px; }

.fd .pill { display: inline-block; font-size: 12px; padding: 3px 10px; border-radius: 20px; font-weight: bold; }
.fd .pill-green { background: #e1f5ee; color: #0f6e56; }
.fd .pill-amber { background: #faeeda; color: #854f0b; }