/* ===================== LOGIN PAGE ===================== */
/* conteneur global du login */
.login-wrapper {
    max-width: 380px;
    margin: 60px auto 0 auto;
    background: #ffffff;
    padding: 30px 25px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    text-align: center;
}

/* titre et sous-titre */
.login-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.login-subtitle {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 25px;
}

/* form */
.login-form label {
    display: block;
    font-weight: 600;
    text-align: left;
    margin-bottom: 6px;
    white-space: nowrap;
}

.login-form input {
    width: 100%;
    padding: 8px 10px;
    font-size: 14px;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    margin-bottom: 20px;
}

.login-form input:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.3);
}

/* bouton */
.login-btn {
    width: 100%;
    padding: 10px 0;
    background: cornflowerblue;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.login-btn:hover {
    background: cornflowerblue;
}

/* erreur */
.login-error {
    color: cornflowerblue;
    margin-top: 12px;
    font-size: 14px;
}

/* =========================================================
   1. RESET & BASE GLOBALE
   ========================================================= */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background-color: #f3f4f6;
    color: #111827;
    line-height: 1.5;
}

a {
    color: inherit;
    text-decoration: none;
}

/* =========================================================
   2. HEADER / LOGO STAR PRESTIGE
   ========================================================= */

.site-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    padding: 16px 0;
    margin-bottom: 20px;
}

.header-inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-img {
    height: 150px;
    width: auto;
}

/* =========================================================
   3. CONTENU CGU (TEXTE CONDITIONS)
   ========================================================= */

.cgu-wrapper {
    max-width: 900px;
    margin: 0 auto 40px auto;
    padding: 24px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
}

.cgu-title {
    font-size: 26px;
    margin-bottom: 4px;
}

.cgu-subtitle {
    font-size: 18px;
    margin-bottom: 20px;
    letter-spacing: 0.12em;
}

.cgu-wrapper p {
    margin-bottom: 10px;
    font-size: 14px;
}

/* =========================================================
   4. ZONE DE SIGNATURE
   ========================================================= */

/* conteneur global de la signature */
.signature-wrapper {
    width: 600px;
    margin: 40px auto 60px auto;
}

/* label de la signature */
.signature-label {
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
}

/* petit astérisque rouge */
.required {
    color: #e11d48;
}

/* canvas de signature */
.signature-canvas {
    width: 600px;
    height: 250px;
    border: 1px solid #cccccc;
    background: #ffffff;
    border-radius: 4px;
    display: block;
}

/* zone du bouton Clear */
.signature-actions {
    margin-top: 12px;
}

/* bouton Clear */
.btn-clear {
    padding: 4px 12px;
    font-size: 12px;
    background: #e6ecff;
    border: 1px solid #cbd5f5;
    border-radius: 3px;
    cursor: pointer;
}

.btn-clear:hover {
    background: #d4e0ff;
}

/* bouton Suivant (style proche JotForm rouge) */
.btn-next {
    margin-top: 35px;
    padding: 10px 26px;
    background: #e60000;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

.btn-next:hover {
    background: #cc0000;
}

/* FIX : empêcher le bouton Suivant de chevaucher Clear */
.signature-wrapper {
    position: relative;
}

.btn-next {
    display: inline-block;
    margin-top: 25px !important;
}

/* =========================================================
   5. RESPONSIVE (OPTIONNEL)
   ========================================================= */

@media (max-width: 640px) {
    .cgu-wrapper {
        margin: 0 10px 30px 10px;
        padding: 16px;
    }

    .signature-wrapper,
    .signature-canvas {
        width: 100%;
        margin-bottom: 15px;
    }
}

/* =========================================================
   6. FORMULAIRE CONTRAT DE LOCATION
   ========================================================= */

/* ----- Conteneur global ----- */
.form-page {
    max-width: 900px;
    margin: 30px auto 60px auto;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
    padding: 32px 40px 40px 40px;
}

/* =========================================================
   TITRES – PARTIE HAUTE (CENTRÉE)
   ========================================================= */

.form-title-block {
    text-align: center;
    margin-bottom: 30px;
}

.form-main-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 5px;
}

.form-sub-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.form-owner-sub {
    font-style: italic;
    font-size: 13px;
    color: #6b7280;
}

/* =========================================================
   CONTENEUR FORMULAIRE (ALIGNÉ À GAUCHE)
   ========================================================= */

.rental-form {
    max-width: 650px;
    margin: 0 auto;
    text-align: left;
}

/* =========================================================
   GROUPES DE CHAMPS
   ========================================================= */

.form-group {
    margin-bottom: 18px;
}

.form-label {
    display: block;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 4px;
}

.form-help {
    font-size: 11px;
    color: #9ca3af;
    display: block;
    margin-top: 2px;
}

/* =========================================================
   LIGNES MULTI-CHAMPS
   ========================================================= */

.form-row {
    display: flex;
    gap: 10px;
}

.form-group-inner {
    flex: 1;
}

/* =========================================================
   INPUTS + SELECTS
   ========================================================= */

.form-input,
.form-select {
    width: 100%;
    padding: 6px 8px;
    font-size: 14px;
    border: 1px solid #d1d5db;
    border-radius: 3px;
    background: #ffffff;
}

.form-input:focus,
.form-select:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.2);
}

/* =========================================================
   RADIO
   ========================================================= */

.radio-group {
    display: flex;
    gap: 16px;
    margin-top: 4px;
    font-size: 14px;
}

/* =========================================================
   DATE + HEURE
   ========================================================= */

.date-time-row {
    display: flex;
    gap: 10px;
}

/* =========================================================
   BOUTON DE VALIDATION
   ========================================================= */
.form-submit-wrapper {
    margin-top: 40px;
    margin-bottom: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.bouton_ret,
.btn_suivant {
    padding: 10px 26px;
    font-size: 14px;
    border-radius: 4px;
    cursor: pointer;
    width: 150px;
    height: 50px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    border: none;
    text-decoration: none;
}

.bouton_ret {
    background: midnightblue;
    color: #ffffff;
}

.bouton_ret:hover {
    background: #d1d5db;
}

.btn_suivant {
    background: midnightblue;
    color: #ffffff;
}

.btn_suivant:hover {
    background: #d1d5db;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 640px) {
    .form-page {
        margin: 20px 10px 40px 10px;
        padding: 20px;
    }

    .form-row,
    .date-time-row {
        flex-direction: column;
    }
}

input[type="file"].form-input {
    padding: 10px;
    background: #f9fafb;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    cursor: pointer;
}

/* =========================
   VERSION MOBILE
   ========================= */
@media (max-width: 768px) {

    body {
        font-size: 14px;
        margin: 0;
    }

    .site-header {
        padding: 8px 12px;
    }

    .header-inner {
        justify-content: center;
    }

    .logo-img {
        max-width: 160px;
        height: auto;
    }

    /* bloc principal (formulaire / recap) */
    .form-page-wrapper,
    .recap-page {
        margin: 8px;
        padding: 14px;
        box-shadow: none;
        border-radius: 6px;
    }

    .recap-title {
        font-size: 20px;
    }

    .recap-section h2 {
        font-size: 16px;
    }

    /* grilles en 1 colonne sur téléphone */
    .recap-grid-2 {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    /* si tu as des lignes de formulaire en flex */
    .form-row {
        flex-direction: column;
        gap: 6px;
    }

    .form-row > * {
        width: 100%;
    }

    /* champs qui prennent toute la largeur */
    input,
    select,
    textarea {
        width: 100%;
        box-sizing: border-box;
    }

    /* boutons en colonne, full width */
    .recap-actions,
    .form-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .recap-actions button,
    .form-buttons button,
    .btn-submit-final,
    .btn-retour {
        width: 100%;
        text-align: center;
    }
}

/* =========================
   STYLES POUR PAGE RECAP
   ========================= */

.recap-page {
    max-width: 900px;
    margin: 30px auto;
    background: #ffffff;
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
}

.recap-title {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
    color: #1e293b;
}

.recap-section {
    margin-bottom: 24px;
    border-top: 1px solid #e5e7eb;
    padding-top: 16px;
}

.recap-section h2 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #334155;
}

.recap-section p {
    margin: 6px 0;
    line-height: 1.6;
}

.recap-label {
    font-weight: 600;
    color: #475569;
}

.no-data {
    color: #9ca3af;
    font-style: italic;
}

.recap-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 12px;
}

.recap-actions {
    margin-top: 32px;
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-submit-final {
    padding: 10px 26px;
    min-width: 200px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    background: royalblue;
    color: #ffffff;
    transition: 0.2s ease-in-out;
}

.btn-submit-final:hover {
    background: blue;
}

.btn-retour {
    padding: 10px 26px;
    min-width: 200px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    background: #6b7280;
    color: #ffffff;
    transition: 0.2s ease-in-out;
}

.btn-retour:hover {
    background: #4b5563;
}

@media print {
    .recap-actions {
        display: none;
    }
}

/* =========================
   SIGNATURES ET IMAGES RÉCAP - TAILLE RÉDUITE
   ========================= */

/* Toutes les images du récap (signatures, photos, etc.) sont réduites */
.recap-img {
    max-width: 300px !important;
    max-height: 150px !important;
    width: auto !important;
    height: auto !important;
    display: block !important;
    margin: 10px 0 !important;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    object-fit: contain;
}

/* Conteneurs d'images avec fond gris clair */
#recap-signature-locataire-form,
#recap-signature-bailleur-form,
#recap-cgu-signature,
#recap-annotation,
#recap-photo-dommage-1,
#recap-signature-locataire,
#recap-signature-ja,
#recap-signature-locataire-gage,
#recap-signature-ja-gage,
#recap-permis-recto,
#recap-permis-verso,
#recap-sup-recto,
#recap-sup-verso,
#recap-photos-dommages {
    min-height: 60px;
    background: #f9fafb;
    padding: 8px;
    border-radius: 4px;
}

/* Mobile : images plus grandes */
@media (max-width: 768px) {
    .recap-img {
        max-width: 100% !important;
        width: auto !important;
        height: auto !important;
    }

    .recap-grid-2 {
        grid-template-columns: 1fr !important;
    }
}