-
Notifications
You must be signed in to change notification settings - Fork 385
/
style.css
118 lines (103 loc) · 1.88 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
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
@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;500;600&display=swap");
*{
margin: 0;
padding: 0;
font-family: 'Nunito', sans-serif;
}
body{
background: rgba(182, 131, 84, 0.671);
display: flex;
align-items: center;
justify-content: center;
}
.container{
background-color: #fff;
border-radius: 10px;
padding: 3% auto;
margin-top: 30px;
width: 550px;
height: 600px;
}
.form{
padding: 40px;
}
.form-control{
margin-bottom: 30px;
position: relative;
}
.form-control label{
display: inline-block;
margin-bottom: 5px;
}
.form-control input{
width: 100%;
border: 2px solid #f0f0f0;
font-size: 14px;
border-radius: 5px;
padding: 5px;
display: block;
}
.form-control i {
position: absolute;
right: 12px;
top: 40px;
visibility: hidden;
}
.form-control.error small{
visibility: visible;
}
.form-control small{
color: #df3434;
position: absolute;
left: 0;
visibility: hidden;
}
.form-control.success i.fa-check-circle{
color: #39df7e;
visibility: visible;
}
.form-control.error i.fa-exclamation-circle{
color: #df3434;
visibility: visible;
}
.signup__submit {
background: #fff;
font-size: 14px;
margin-top: 20px;
padding: 16px 20px;
border-radius: 30px;
border: 1px solid #D4D3E8;
text-transform: uppercase;
font-weight: 700;
display: flex;
justify-content: center;
align-items: center;
width: 100%;
color: chocolate;
cursor: pointer;
transition: .2s;
}
.signup__submit:hover{
background: rgb(81, 33, 100);
color: #fff;
}
.social-media{
display: flex;
justify-content: center;
align-items: center;
}
a{
display: flex;
height: 20px;
width: 30px;
margin: 0 12px;
align-items: center;
justify-content: center;
}
a i{
font-size: 20px;
color: rgb(46, 5, 158);
}
a:hover i{
color: black;
}