-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
104 lines (104 loc) · 1.89 KB
/
style.css
File metadata and controls
104 lines (104 loc) · 1.89 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
/*reset css*/
*{
margin: 0;
padding: 0;
box-sizing: border-box;
outline: none;
}
body{
width: 100%;
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background: linear-gradient(to top, #7f7fd5, #86a8e7, #91eae4);
color: #1b2029;
}
.container{
background-color: #fff;
border-radius: 120px 0px;
padding: 30px;
width: 450px;
box-shadow: .2rem .2rem .2rem rgba(0,0,0, .4);
}
header{
text-align: center;
}
header i{
height: 50px;
width: 50px;
line-height: 50px!important;
font-size: 1.2rem;
text-align: center;
background: #5c5cc2;
border-radius: 50%;
color: #fff;
margin-bottom: 10px;
}
header h1{
font-size: 1.7rem;
margin-bottom: 20px;
}
.form-control{
padding-bottom: 20px;
}
.form-control label{
display: block;
margin-bottom: 12px;
display: flex;
align-items: center;
font-size: 1rem;
}
.form-control i{
color: #5c5cc2;
margin-right: 10px;
}
.form-control input{
padding: 13px;
width: 100%;
border: 2px solid #ccc;
border-radius: 70px;
}
.btn-enviar{
width: 80%;
margin: 0 auto;
display: block;
padding: 8px;
border-radius: 70px;
background-color: #5c5cc2;
border: 1px solid #5c5cc2;
color: #fff;
cursor: pointer;
font-size: 1rem;
}
.form-control .message{
opacity: 0;
}
.form-control.error .message{
opacity: 1;
color: #e74c3c;
}
.form-control.error input{
border-color: #e74c3c;
}
.form-control.success input{
border-color: #2ecc71;
}
.senha{
display: flex;
justify-content: space-between;
}
.senha .form-control{
width: 49%;
}
.msg-sucesso{
display: none;
position: absolute;
padding: 10px;
width: 250px;
background-color: #1b2029;
top: 50px;
left: 50px;
color: #fff;
}