@charset "utf-8";
/* CSS Document */

/* ==========================================
   FORMULÁRIO - LINHA DE ÉTICA
   Estilo inspirado no Bootstrap
   ========================================== */

.form-group {
    margin-bottom: 1.5rem;
}


/* Campos */

.form-control {
    display: block;
    width: 100%;
    min-height: 48px;
    padding: 0.75rem 1rem;

    font-family: inherit;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;

    color: #212529;
    background-color: #fff;

    border: 1px solid #dee2e6;
    border-radius: 6px;

    outline: none;

    transition:
        border-color 0.15s ease-in-out,
        box-shadow 0.15s ease-in-out,
        background-color 0.15s ease-in-out;

    box-sizing: border-box;
}


/* Placeholder */

.form-control::placeholder {
    color: #8a8f98;
    opacity: 1;
}


/* Foco */

.form-control:focus {
    color: #212529;
    background-color: #fff;

    border-color: #80bdff;

    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.12);
}


/* Select */

select.form-control {
    cursor: pointer;
    appearance: auto;
}


/* Textarea */

.form-textarea {
    min-height: 240px;
    resize: vertical;
}


/* Campo de arquivo */

.form-file {
    padding: 0.65rem 0.8rem;
    cursor: pointer;
}


/* Texto de ajuda */

.form-help {
    display: block;
    margin-top: 7px;
    margin-left: 5px;

    font-size: 12px;
    line-height: 1.4;

    color: #6c757d;
}


/* Botão */

.btn-submit {
    display: inline-block;

    min-height: 44px;
    padding: 0.65rem 1.5rem;

    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;

    color: #fff;
    text-align: center;
    text-decoration: none;

    background-color: #0d6efd;

    border: 1px solid #0d6efd;
    border-radius: 6px;

    cursor: pointer;

    transition:
        background-color 0.15s ease-in-out,
        border-color 0.15s ease-in-out,
        box-shadow 0.15s ease-in-out,
        transform 0.1s ease-in-out;
}


/* Hover */

.btn-submit:hover {
    background-color: #0b5ed7;
    border-color: #0a58ca;
}


/* Clique */

.btn-submit:active {
    transform: translateY(1px);
}


/* Foco do botão */

.btn-submit:focus {
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}


/* Espaçamento do título */

.mb-3 {
    margin-bottom: 1rem;
}


/* Padding semelhante ao Bootstrap p-5 */

.p-5 {
    padding: 3rem;
}


/* ==========================================
   RESPONSIVO
   ========================================== */

@media (max-width: 767px) {

    .p-5 {
        padding: 1.5rem;
    }

    .form-group {
        margin-bottom: 1.25rem;
    }

    .form-control {
        min-height: 46px;
        font-size: 15px;
    }

    .form-textarea {
        min-height: 200px;
    }

    .btn-submit {
        width: 100%;
    }
}