-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
59 lines (44 loc) · 1.02 KB
/
Copy pathstyle.css
File metadata and controls
59 lines (44 loc) · 1.02 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
/* Define a imagem de fundo para a página toda */
body {
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
background-image: url("img/cantor.png"); /* caminho da imagem */
background-size: cover;
background-position: center;
height: 70vh;
display: flex;
justify-content: center;
align-items: center;
}
/* Estilo do formulário */
.login-container {
background-color: rgba(60, 53, 210, 0.9); /* fundo branco semi-transparente */
padding: 30px;
border-radius: 10px;
box-shadow: 0 0 10px #00000060;
width: 300px;
}
.login-container h2 {
text-align: center;
margin-bottom: 20px;
}
.login-container input {
width: 100%;
padding: 10px;
margin: 10px 0;
border-radius: 5px;
border: 1px solid #ccc;
}
.login-container button {
width: 100%;
padding: 10px;
background-color: #1a73e8;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
}
.login-container button:hover {
background-color: #155ab6;
}