-
Notifications
You must be signed in to change notification settings - Fork 1
/
tela_cadastro.css
91 lines (79 loc) · 1.58 KB
/
tela_cadastro.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
body {
margin: 0;
overflow: hidden;
}
.main-cadastro {
width: 100%;
height: 100vh;
background: #201b2c;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
}
.center-cadastro {
text-align: center;
}
.center-cadastro > h1 {
color: #ffa500;
font-weight: 800;
margin-left: 30%;
margin-bottom: 30px;
font-family: Verdana, Geneva, Tahoma, sans-serif;
}
.card-text {
width: 100%;
max-width: 500px;
padding: 30px 35px;
background: #2f2841;
border-radius: 20px;
box-shadow: 0px 10px 40px #00000056;
}
.text-cadastro {
width: 100%;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: center;
margin: 10px 0px;
position: relative;
}
.text-cadastro input {
width: 100%;
border: none;
border-radius: 10px;
padding: 15px;
background: #514869;
color: aliceblue;
font-size: 12pt;
box-shadow: 0px 10px 40px #00000056;
outline: none;
box-sizing: border-box;
}
.text-cadastro label {
color: aliceblue;
margin-bottom: 10px;
}
.btn-cadastro {
width: 100%;
padding: 16px 0px;
margin: 25px 0;
border: none;
border-radius: 8px;
outline: none;
text-transform: uppercase;
font-weight: 800;
letter-spacing: 3px;
color: #2b134b;
background: #ffa500;
cursor: pointer;
box-shadow: 0px 10px 40px -12px #ffc04d;
}
.fa-eye {
color: #ffa500 ;
position: absolute;
right: 10px;
top: 68%;
transform: translateY(-50%);
cursor: pointer;
}