-
Notifications
You must be signed in to change notification settings - Fork 0
/
signUp.css
148 lines (123 loc) · 2.43 KB
/
signUp.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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');
*{
margin: 0;
padding: 0;
box-sizing: border-box;
list-style: none;
font-family: 'Montserrat', sans-serif;
}
.wrapper{
min-height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}
.registration_form{
/*background: #545871;*/
padding: 25px;
border-radius: 5px;
width: 400px;
margin: 30px;
background-color: rgba(1,3,0.3,0.5);
}
.registration_form .title{
text-align: center;
font-size: 20px;
text-transform: uppercase;
color: #fff;
letter-spacing: 5px;
font-weight: 700;
font-family: monospace;
}
.form_wrap{
margin-top: 35px;
}
.form_wrap .input_wrap{
margin-bottom: 15px;
}
.form_wrap .input_wrap:last-child{
margin-bottom: 0;
}
.form_wrap .input_wrap label{
display: block;
margin-bottom: 3px;
color: #9597a6;
}
.form_wrap .input_grp{
display: flex;
justify-content: space-between;
}
.form_wrap .input_grp input[type="text"]{
width: 165px;
}
.form_wrap .input_grp input[type="password"]{
width: 165px;
}
.form_wrap input[type="text"]{
width: 100%;
border-radius: 3px;
border: 1px solid #9597a6;
padding: 10px;
outline: none;
color: black;
}/*
.form_wrap .input_grp input[type="number"]{
width: 165px;
}*/
.form_wrap input[type="password"]{
width: 100%;
border-radius: 3px;
border: 1px solid #9597a6;
padding: 10px;
outline: none;
color: black;
}
.form_wrap input[type="password"]:focus{
border-color: #ebd0ce;
}
.form_wrap input[type="text"]:focus{
border-color: #ebd0ce;
}
.form_wrap ul{
background: #fff;
padding: 8px 10px;
border-radius: 3px;
display: flex;
justify-content: center;
}
.form_wrap ul li:first-child{
margin-right: 15px;
}
.form_wrap ul .radio_wrap{
position: relative;
margin-bottom: 0;
}
.form_wrap ul .radio_wrap .input_radio{
position: absolute;
top: 0;
right: 0;
opacity: 0;
}
.form_wrap ul .radio_wrap span{
display: inline-block;
font-size: 14px;
padding: 3px 20px;
border-radius: 3px;
color: #545871;
}
.form_wrap .input_radio:checked ~ span{
background: #ebd0ce;
}
.form_wrap .submit_btn{
width: 100%;
background: #F9522E;
padding: 10px;
border: 0;
border-radius: 3px;
text-transform: uppercase;
letter-spacing: 3px;
cursor: pointer;
}
.form_wrap .submit_btn:hover{
background: orange;
}