/* Lost & Found public form — loaded only on lost-and-found page */

.lost-found-page.section-content {
    text-align: left;
}

.lost-found-form .form-control,
.lost-found-form select.form-control {
    background: #fff !important;
    color: #444 !important;
    border: 1px solid #ddd !important;
    border-radius: 5px;
    padding: 10px 15px;
    position: relative;
    z-index: 2;
}

.lost-found-form .row {
    position: relative;
    z-index: 1;
}

.lost-found-form label {
    color: #333;
    font-weight: 600;
}

.lost-found-form .form-group {
    margin-bottom: 20px;
}

.lost-found-form .field-block-after-desc {
    margin-top: 28px;
}

/* Heading + form card share the same horizontal column */
.lost-found-layout {
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}

.lost-found-layout .inner_title {
    margin-bottom: 20px;
}

/* Match flight search / layout.inc.search reCAPTCHA sizing */
.lost-found-form .g-recaptcha {
    transform: scale(0.8);
    transform-origin: 0 0;
}

.lost-found-form .lost-found-recaptcha {
    margin-bottom: 12px;
}

/*
 * jQuery UI datepicker lives in #ui-datepicker-div with .ui-widget-content.
 * public/css/style.css forces .ui-widget.ui-widget-content { width: 48em !important },
 * which ignores normal inline width from JS — width is set via JS with !important.
 */
#ui-datepicker-div.lost-found-datepicker-popup.ui-widget.ui-widget-content {
    max-width: 100vw;
    box-sizing: border-box;
}

#ui-datepicker-div.lost-found-datepicker-popup .ui-datepicker {
    width: 100% !important;
    max-width: 100%;
    box-sizing: border-box;
}

#ui-datepicker-div.lost-found-datepicker-popup .ui-datepicker table {
    width: 100%;
    table-layout: fixed;
}

/* Submit button: same gold pill + hover as header .login .btn (see public/css/style.css .btn) */
.lost-found-form .lost-found-submit {
    background: #e1a70f !important;
    color: #fff !important;
    border: none !important;
    padding: 8px 22px;
    text-transform: capitalize;
    letter-spacing: 0.2px;
    font-size: 13px;
    border-radius: 25px;
    font-weight: 600;
    outline: none !important;
    transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.lost-found-form .lost-found-submit:hover,
.lost-found-form .lost-found-submit:focus {
    color: #fff !important;
    background: #d4a00f !important;
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.2), 0 4px 14px 0 rgba(0, 0, 0, 0.16);
}

.lost-found-form .lost-found-submit:active {
    color: #fff !important;
    background: #c9960e !important;
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.18);
}
