/* ============================================================
   app.css – Unified application stylesheet
   Loaded after theme.css for all workflows.
   Body carries the action_tag as class for workflow-specific overrides.
   ============================================================ */


/* FEATURES SECTION
============================================================ */

.features {
    padding: 50px 0 100px;
}

.features h3 {
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    margin: 0 0 28px;
}

.features form {
    margin: 0;
}


/* INTRO IMAGE
============================================================ */

.intro img {
    margin-bottom: 25px;
}


/* CONTENT CARD  (upload-like card for all workflows)
============================================================ */

.form-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,.10);
    padding: 32px 28px 24px;
    margin-bottom: 24px;
}


/* RADIO + CHECKBOX GROUPS
============================================================ */

.form-group .clickable {
    cursor: pointer;
}

.form-group label.clickable {
    font-weight: 400;
}


/* LEGAL ADVICE BOX
============================================================ */

.legal_advice {
    background: #f6f8fa;
    border: 1px solid #dde3ea;
    border-radius: 6px;
    font-size: 13px;
    line-height: 20px;
    margin-top: 24px;
    padding: 20px 22px;
}

.legal_advice h4 {
    font-size: 13px;
    font-weight: 600;
    margin: 0 0 12px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #555;
}

.legal_advice p {
    margin: 0 0 8px;
    color: #666;
}

.legal_advice p:last-child {
    margin-bottom: 0;
}


/* CONTACT LINE (below legal box)
============================================================ */

.features-contact {
    font-size: 13px;
    color: #888;
    margin-top: 16px;
}

.features-contact a {
    color: #009acb;
}


/* FORM VALIDATION
============================================================ */

.invalid {
    padding: 0 0 30px 4px;
}

.invalid img {
    margin-right: 10px;
}


/* UPLOAD – Drag-and-drop zone
============================================================ */

.upload-dropzone {
    border: 2px dashed #ccd2d9;
    border-radius: 6px;
    background: #f6f8fa;
    cursor: pointer;
    padding: 28px 16px;
    text-align: center;
    position: relative;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.upload-dropzone.is-over,
.upload-dropzone:hover {
    border-color: #009acb;
    background: #edf7fc;
}

.upload-dropzone__input {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    display: block !important;
}

.upload-dropzone__icon {
    font-size: 36px;
    color: #009acb;
    display: block;
    margin-bottom: 10px;
}

.upload-dropzone__label {
    font-size: 13px;
    color: #888;
    display: block;
}

.upload-progress {
    height: 8px;
    background: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 6px;
}

.upload-progress__bar {
    height: 100%;
    width: 0;
    background: #1a3a5c;
    border-radius: 4px;
    transition: width 0.2s ease;
}

.upload-progress__label {
    font-size: 12px;
    color: #666;
    margin: 0 0 12px;
    text-align: center;
}


/* IWAP – custom navbar icon
============================================================ */

body.iwap .navbar-brand {
    background-image: url('../images/icon_iwap.png');
}
