-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathform.css
89 lines (77 loc) · 1.71 KB
/
form.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
/* Reseta margens e preenchimentos padrão */
* {
margin: 10;
padding: 10;
box-sizing: border-box;
}
body {
font-family: Arial, sans-serif;
background-color: #3f0e5fe0;
display: flex;
flex-direction: column;
align-items: center;
padding: 20px;
}
header {
width: 100%;
max-width: 1200px;
margin-bottom: 20px;
}
.header-content {
display: flex;
align-items: center;
gap: 80px; /* Espaço entre a imagem e o texto */
}
.header-image {
width: 5000px; /* Ajuste o tamanho conforme necessário */
height: auto;
border-radius: 8px; /* Bordas arredondadas para a imagem */
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Sombra sutil para a imagem */
}
.text-box {
max-width: 600px; /* Limita a largura do texto */
}
.text-box h1 {
font-size: 4rem;
color: #333;
margin-bottom: 10px;
}
.text-box p {
font-size: 3rem;
color: #666;
}
form.formulario {
width: 200%;
max-width: 600px;
background: #b39393;
padding: 20px;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
form.formulario label {
display: block;
font-size: 2rem;
margin-bottom: 5px;
color: #080303;
}
form.formulario input[type="text"],
form.formulario input[type="email"] {
width: 100%;
padding: 10px;
margin-bottom: 15px;
border: 1px solid #ddd;
border-radius: 4px;
}
form.formulario button {
width: 100%;
padding: 10px;
border: none;
background-color: #007BFF;
color: #fff;
font-size: 1rem;
border-radius: 4px;
cursor: pointer;
}
form.formulario button:hover {
background-color: #0056b3;
}