-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhome.css
More file actions
138 lines (120 loc) · 2.54 KB
/
home.css
File metadata and controls
138 lines (120 loc) · 2.54 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
129
130
131
132
133
134
135
136
137
138
/* Variáveis CSS */
:root {
--color-primary: #2196F3;
--color-primary-dark: #1976D2;
--color-primary-light: #64B5F6;
--color-white: #ffffff;
--color-gray: #f5f5f5;
--color-text: #333333;
--shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
--transition: all 0.3s ease;
}
/* Reset e estilos base */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background: linear-gradient(135deg, #E3F2FD, #BBDEFB);
min-height: 100vh;
display: flex;
justify-content: center;
align-items: center;
padding: 20px;
}
/* Container principal */
.form-container {
width: 100%;
max-width: 600px;
background: var(--color-white);
border-radius: 20px;
box-shadow: var(--shadow);
padding: 40px;
}
/* Header */
.header {
text-align: center;
margin-bottom: 40px;
padding-bottom: 20px;
border-bottom: 2px solid var(--color-gray);
}
.header i {
font-size: 3.5rem;
color: var(--color-primary);
margin-bottom: 15px;
display: inline-block;
}
.header h2 {
color: var(--color-text);
font-size: 1.8rem;
margin-bottom: 10px;
}
.header p {
color: #666;
font-size: 1rem;
}
/* Container dos botões */
.button-container {
margin-bottom: 20px;
}
/* Estilo dos botões */
button {
width: 100%;
padding: 16px 24px;
background: var(--color-white);
color: var(--color-primary);
border: 2px solid var(--color-primary);
border-radius: 12px;
cursor: pointer;
font-size: 1rem;
font-weight: 600;
display: flex;
align-items: center;
justify-content: flex-start;
gap: 15px;
transition: var(--transition);
position: relative;
overflow: hidden;
}
button i {
font-size: 1.4rem;
min-width: 30px;
text-align: center;
}
button span {
flex-grow: 1;
text-align: left;
}
button:hover {
background: var(--color-primary);
color: var(--color-white);
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(33, 150, 243, 0.2);
}
/* Botão destacado (PEWS) */
button.highlight {
background: var(--color-primary);
color: var(--color-white);
}
button.highlight:hover {
background: var(--color-primary-dark);
border-color: var(--color-primary-dark);
}
/* Responsividade */
@media (max-width: 480px) {
.form-container {
padding: 20px;
}
.header h2 {
font-size: 1.5rem;
}
button {
padding: 12px 20px;
font-size: 0.9rem;
}
button i {
font-size: 1.2rem;
}
}