-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
71 lines (63 loc) · 1.27 KB
/
style.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
@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
@font-face {
font-family: Nasalization;
src: url(./font/nasalization.otf);
}
body {
font-family: 'Poppins', sans-serif;
background: linear-gradient(0deg, rgba(31,33,35,1) 0%, rgba(0,103,162,1) 100%);
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
}
.login-container {
background-color: transparent;
padding: 24px;
border-radius: 20px;
box-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
text-align: center;
}
img {
width: 80px;
}
h1 {
font-family: Nasalization;
margin-bottom: 30px;
color: #ffffff;
}
.input-container {
display: flex;
flex-direction: column;
align-items: flex-start;
}
label {
display: block;
margin-bottom: 5px;
color: #ffffff; /* Azul */
}
input {
width: 100%;
padding: 10px;
border: 1px solid #ccc;
border-radius: 3px;
font-size: 16px;
margin-bottom: 15px;
}
button {
background-color: rgba(0,103,162,1); /* Azul */
color: #fff;
padding: 20px;
border: none;
border-radius: 50px;
font-size: 16px;
cursor: pointer;
width: 100%;
margin-top: 10px;
}