+
diff --git a/src/pages/Institutional/Contact/index.module.scss b/src/pages/Institutional/Contact/index.module.scss
index 10c8e6a..114b801 100644
--- a/src/pages/Institutional/Contact/index.module.scss
+++ b/src/pages/Institutional/Contact/index.module.scss
@@ -3,21 +3,21 @@
height: 100%;
margin-bottom: 69.56px;
-}
-.form {
- fieldset {
- width: 100%;
- border: none;
+ &__form {
+ .form__container {
+ width: 100%;
+ border: none;
+ }
}
}
.form :global {
- .form-group {
+ .form__group {
margin-bottom: 12px;
}
- label {
+ .form__label {
display: flex;
align-items: center;
justify-content: space-between;
@@ -32,7 +32,7 @@
}
}
- .form-group-content {
+ .form__content {
position: relative;
width: 100%;
@@ -56,7 +56,7 @@
}
}
- .form-input {
+ .form__input {
display: block;
width: 100%;
@@ -133,6 +133,13 @@
text-transform: uppercase;
+ transition: 200ms ease-in-out;
+
+ &:hover {
+ color: var(--clr-common-black);
+ background-color: var(--clr-primary-blue-500);
+ }
+
@media screen and (min-width: 2500px) {
height: 71px;
}
diff --git a/src/pages/Institutional/Contact/index.tsx b/src/pages/Institutional/Contact/index.tsx
index da402f2..4a64bda 100644
--- a/src/pages/Institutional/Contact/index.tsx
+++ b/src/pages/Institutional/Contact/index.tsx
@@ -4,7 +4,7 @@ import { Input } from './fragments/Input'
import validadeShema from './schema/FormSchema'
-import css from './index.module.scss'
+import styles from './index.module.scss'
export function Contact() {
const initialValues = useMemo(() => {
@@ -20,14 +20,12 @@ export function Contact() {
}, [])
return (
-
+
Preencha o formulário
{
- e.validateField('email')
-
e.resetForm({
isSubmitting: true,
})
@@ -37,8 +35,8 @@ export function Contact() {
>
{({ errors, touched }) => {
return (
-
-