/* Fort — Primeiro Acesso / Cadastro
 * Paleta: azul Fort #1863DC (primary), #0056A7 (hover), texto #212121
 */

.fort-fa-wrapper {
    max-width: 560px;
    margin: 48px auto;
    padding: 0 16px;
}

.fort-fa-card {
    background: #fff;
    border: 1px solid #ebebeb;
    border-radius: 0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    padding: 36px 32px;
    box-sizing: border-box;
}

.fort-fa-card__title {
    margin: 0 0 8px;
    font-size: 26px;
    font-weight: 600;
    color: #212121;
    line-height: 1.2;
}

.fort-fa-card__lead {
    margin: 0 0 24px;
    color: #555;
    font-size: 15px;
    line-height: 1.5;
}

.fort-fa-card__form {
    display: block;
}

.fort-fa-field {
    display: block;
    margin-bottom: 18px;
}

.fort-fa-field__label {
    display: block;
    font-weight: 600;
    font-size: 14px;
    color: #212121;
    margin-bottom: 6px;
}

.fort-fa-field__label .required {
    color: #d83a3a;
    margin-left: 2px;
}

.fort-fa-field__input {
    display: block;
    width: 100%;
    padding: 11px 14px;
    font-size: 14px;
    color: #212121;
    background: #fff;
    border: 1px solid #d0d5dc;
    border-radius: 0;
    box-sizing: border-box;
    transition: border-color 0.15s, box-shadow 0.15s;
}

.fort-fa-field__input:focus {
    outline: none;
    border-color: #1863DC;
    box-shadow: 0 0 0 3px rgba(24, 99, 220, 0.15);
}

.fort-fa-field__hint {
    display: block;
    font-size: 12px;
    color: #777;
    margin-top: 5px;
}

.fort-fa-field__readonly {
    display: block;
    width: 100%;
    padding: 11px 14px;
    font-size: 14px;
    color: #444;
    background: #f7f8fa;
    border: 1px solid #ebebeb;
    border-radius: 0;
    box-sizing: border-box;
}

.fort-fa-summary {
    background: #f7f8fa;
    border: 1px solid #ebebeb;
    border-radius: 0;
    padding: 18px 20px;
    margin-bottom: 24px;
}

.fort-fa-summary__row {
    display: flex;
    flex-wrap: wrap;
    padding: 6px 0;
    border-bottom: 1px solid #ebebeb;
    font-size: 14px;
}

.fort-fa-summary__row:last-child {
    border-bottom: none;
}

.fort-fa-summary__label {
    flex: 0 0 140px;
    color: #666;
}

.fort-fa-summary__value {
    flex: 1;
    color: #212121;
    font-weight: 600;
    word-break: break-word;
}

.fort-fa-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 8px 0 22px;
    font-size: 13px;
    color: #444;
    line-height: 1.5;
}

.fort-fa-checkbox input[type="checkbox"] {
    margin-top: 4px;
    flex-shrink: 0;
    accent-color: #1863DC;
}

.fort-fa-button {
    display: block;
    width: 100%;
    padding: 14px 20px;
    background: #1863DC;
    color: #fff;
    border: none;
    border-radius: 0;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: background 0.15s;
    text-align: center;
}

.fort-fa-button:hover,
.fort-fa-button:focus {
    background: #0056A7;
    color: #fff;
}

.fort-fa-button:disabled {
    background: #b9c5d4;
    cursor: not-allowed;
}

.fort-fa-footer {
    margin: 24px 0 0;
    text-align: center;
    font-size: 13px;
    color: #666;
}

.fort-fa-footer a {
    color: #1863DC;
    font-weight: 600;
    text-decoration: none;
}

.fort-fa-footer a:hover {
    color: #0056A7;
    text-decoration: underline;
}

@media (max-width: 600px) {
    .fort-fa-wrapper {
        margin: 24px auto;
    }

    .fort-fa-card {
        padding: 24px 18px;
    }

    .fort-fa-card__title {
        font-size: 22px;
    }

    .fort-fa-summary__row {
        flex-direction: column;
        gap: 2px;
    }

    .fort-fa-summary__label {
        flex: none;
        font-size: 12px;
    }
}
