-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathformulario.css
More file actions
128 lines (126 loc) · 2.34 KB
/
Copy pathformulario.css
File metadata and controls
128 lines (126 loc) · 2.34 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
.contacto{
background-color: var(--second-color);
padding: 8rem 0 4rem 0;
}
.contacto_width{
display: flex;
margin-left: 2rem;
margin-top: 5vh;
}
.contacto_p{
margin-bottom: 1rem;
}
.contacto_width img{
width: 50%;
max-width: 464px;
height: 61vh;
max-height: 593px;
padding-right: 1rem;
}
.formulario{
display: grid;
grid-template-columns: 1fr;
gap: 10px;
}
.formulario_label{
display: block;
padding: 5px;
cursor: pointer;
}
.form_grupo_input{
position: relative;
}
.form_input{
width: 95%;
background: #fff;
border: 3px solid transparent;
border-radius: 10px;
height: 45px;
line-height: 45px;
padding: 0 20px 0 10px;
transition: 0.3s ease all;
}
.form_input:focus{
border: 3px solid #2A7AE4;
outline: none;
box-shadow: 3px 20px 30px rgba(170, 170, 170, 0.4);
}
.label_height{
height: 100px;
}
.form_input_error{
font-size: 12px;
margin-bottom: 0;
display: none;
}
.form_input_error-act{
display: block;
}
.form_validacion_estado{
position: absolute;
right: 45px;
bottom: 15px;
z-index: 100%;
font-size: 16px;
opacity: 0;
}
.form_mensaje{
height: 45px;
line-height: 45px;
background-color: #f55555;
padding: 0 15px;
border-radius: 5px;
display: none;
}
.form_mensaje-act{
display: block;
}
.contacto_btn{
margin-top: 1rem;
width: 144px;
height: 51px;
background: linear-gradient(to right,#004e92,#65C7F7,#9CECFB);
background-size: 200% auto;
transition: all .3s cubic-bezier(.25,0.8,.25,1);
color: white;
border: 0;
border-radius: 5px;
cursor: pointer;
}
.contacto_btn:hover{
transition: .5s;
background-position: right center;
color: #000428;
box-shadow: 3px 10px 10px rgb(0, 0, 0, 0.6);
}
.form_mensaje_exito{
font-size: 14px;
color: #168807;
display: none;
}
.form_mensaje_exito-act{
display: block;
}
/* validacion */
.form_grupo_co .form_validacion_estado{
color: #21d609;
opacity: 1;
}
.form_grupo_co .form_input{
border: 3px solid #21d609;
}
.form_grupo_in .form_label{
color: #e92222;
}
.form_grupo_in .form_validacion_estado{
color: #e92222;
opacity: 1;
}
.form_grupo_in .form_input{
border: 3px solid #e92222;
}
@media (max-width:940px){
.contacto_width img{
display: none;
}
}