/*
 * Página Indicar artigo (/indicate/)
 */

.indicate-page {
    width: 100%;
    max-width: 100%;
    padding: 0;
    box-sizing: border-box;
}

.indicate-page .section-article {
    display: block;
    margin-bottom: 0.5rem;
}

.indicate-page #header-article {
    margin-bottom: 1.5rem;
}

.indicate-page #header-article h1.small {
    margin: 0.25rem 0 0;
    font-size: 1.15rem;
    line-height: 1.4;
}

.indicate-form {
    margin-top: 0.5rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.indicate-form .form-group {
    margin-bottom: 1.25rem;
}

.indicate-form label {
    display: block;
    margin-bottom: 0.4rem;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: #444;
}

.indicate-form label .help-text {
    display: block;
    margin-top: 0.25rem;
    font-size: 11px;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    color: #777;
    font-style: italic;
}

.indicate-form .field-validation-error {
    display: block;
    margin-top: 0.35rem;
    font-size: 12px;
    font-weight: 400;
    text-transform: none;
}

.indicate-form .form-control {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.indicate-form input.form-control {
    height: 42px;
}

.indicate-form textarea.form-control {
    height: auto;
    min-height: 88px;
    padding: 10px 12px;
    line-height: 1.5;
    resize: vertical;
}

.indicate-form textarea#EmailDestinatario {
    min-height: 72px;
}

.indicate-form textarea#Conteudo {
    min-height: 140px;
}

.indicate-form__row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

.indicate-form__row .form-group {
    margin-bottom: 0;
    width: 100%;
    min-width: 0;
    float: none;
}

.indicate-form__row .form-group .form-control {
    display: block;
    width: 100% !important;
    max-width: 100%;
}

@media (min-width: 576px) {
    .indicate-form__row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem;
        align-items: end;
    }
}

.indicate-form__captcha {
    margin-bottom: 1.25rem;
}

.indicate-form__captcha .field-validation-error {
    margin-top: 0.5rem;
}

.indicate-form__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 0.75rem 1rem;
    margin-top: 0.5rem;
    padding-top: 0.25rem;
}

.indicate-form__actions .btn {
    min-width: 120px;
}

.indicate-form__actions .btn[disabled],
.indicate-form__actions .btn:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

.indicate-form__notice {
    margin-bottom: 1.25rem;
    font-size: 14px;
}

@media (max-width: 575px) {
    .indicate-form__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .indicate-form__actions .btn {
        width: 100%;
    }
}
