/* Estilo do formulário - cores do logo Cientistas Digitais */
.cientistas-form {
    max-width: 500px;
    margin: 2rem auto;
    padding: 1.5rem;
    border: 2px solid #5c92c9; /* azul */
    border-radius: 8px;
    background-color: #ffffff;
    font-family: Arial, sans-serif;
}

.cientistas-form label {
    display: block;
    margin-bottom: 0.3rem;
    font-weight: bold;
    color: #c67564; /* vermelho */
}

.cientistas-form input,
.cientistas-form textarea {
    width: 100%;
    padding: 0.5rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
}

.cientistas-form button {
    background-color: #5c92c9; /* azul */
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
}

.cientistas-form button:hover {
    background-color: #487aad;
}

/* Detalhes opcionais usando verde e amarelo */
.cientistas-form input:focus,
.cientistas-form textarea:focus {
    border-color: #6fac80; /* verde */
    box-shadow: 0 0 0 1px #6fac80;
    outline: none;
}

.cientistas-form .success-message {
    color: #ffffff;
    background-color: #6fac80;
    padding: 0.75rem;
    border-radius: 4px;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: bold;
}

.cientistas-form .error-message {
    color: #ffffff;
    background-color: #c67564;
    padding: 0.75rem;
    border-radius: 4px;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: bold;
}