
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    overflow: auto;
}

body {

    background-size: cover;
    /* Centraliza tudo na tela */
    display: flex;
    justify-content: center;
    flex-direction: column;
    min-height: 100vh;

}

.container-geral {
    margin-top: 100px;
    width: 100%;
    min-height: 100vh;
    /* garante que o container cubra a tela inteira */
    padding-bottom: 30px;
    /* espaço extra no final */


}

h3 {
    font-size: 25px;
    font-weight: normal;
    color: rgb(136, 53, 28);
}

form {
    margin-bottom: 20px;
    width: 500px;
    align-self: center;
    justify-self: center;
    background-color: #cca277;
    padding: 30px 40px;
    border-radius: 12px;
    /* borda leve */
}

.form-group :hover {
    transform: scale(1.05);
    border-radius: 20px;
    box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.267);
}

form .form-group {
    margin-top: 15px;
    transition: all .4s ease;
}

/* Labels padrão */
label {
    display: block;
    margin-bottom: 8px;
    color: rgb(136, 53, 28);
    transition: all .4s ease;
}

/* Labels especiais (ficam lado a lado) */
label[for="html"],
label[for="css"],
label[for="javascript"],
label[for="php"] {
    display: inline-block;
    margin-right: 25px;
    transition: all .4s ease;
}

input[type="text"],
input[type="date"],
input[type="email"],
input[type="file"],
input[type="tel"],
select,
textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    transition: all .4s ease;
}

textarea {
    resize: vertical;
    width: 100%;
    height: 200px;
    /* Aumenta a altura da caixa */
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    transition: all .4s ease;

}

button {
    margin-top: 20px;
    width: 100%;
    padding: 12px;
    background-color: #e5633f;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: all .4s ease;

}

/* Froala customizações */
/* Estilo para a barra de ferramentas do Froala */
.fr-toolbar {
    display: flex !important;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-start;
    align-items: center;
    padding: 10px;
    max-width: 100%;
    transition: all .4s ease;
}

/* Estilo para cada botão da toolbar */
.fr-toolbar .fr-command {
    margin: 0 !important;
    padding: 6px !important;
    width: auto !important;
    height: auto !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.error {
    color: red;
    font-size: 14px;
    transition: all .4s ease;
}

.form-group {
    margin-bottom: 15px;
}
