-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathformulario.css
96 lines (68 loc) · 1.67 KB
/
formulario.css
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
.container-formulario {
width: 60%;
display: flex;
flex-direction: column;
align-items: center;
background-color: #fff;
padding: 10px;
border-radius: 20px;
color: #092552;
}
.titulo-form {
width: 100%;
font-size: 30px;
}
.container-formulario .form {
display: flex;
width: 90%;
justify-content: center;
font-size: 30px;
padding: 10px;
margin: 40px;
flex-wrap: nowrap; /* ---------------- */
line-height: 34px;
border-radius: 20px;
border: 4px solid #ea4235;
}
.form .formulario {
width: 60%;
}
.form .contenedor-inputs {
width: 100%;
}
.container-formulario .form .contenedor-inputs input[type="name"],
.container-formulario .form .contenedor-inputs input[type="email"],
.container-formulario .form .contenedor-inputs textarea {
width: 95%;
border: 2px solid #cecece;
border-radius: 5px;
padding: 15px 20px;
font-size: 15px;
color: #a4a4a4;
border-radius: 20px;
}
.contenedor-inputs input[type="name"]:focus,
.contenedor-inputs input[type="email"]:focus,
.contenedor-inputs textarea:focus {
border: 2px solid #3895ea;
}
.contenedor-inputs textarea {
height: 200px;
resize: none;
}
.form .contenedor-inputs .cta-button {
display: flex;
width: 140px;
text-decoration: none;
background-color: #ea4235;
border-radius: 20px;
color: #fff;
justify-content: center;
margin-top: 20px;
border: 2px solid #ea4235;
padding: 10px;
}
.form .contenedor-inputs .cta-button:hover {
background-color: #fff;
color: #ea4235;
}