-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
164 lines (160 loc) · 3.11 KB
/
Copy pathstyle.css
File metadata and controls
164 lines (160 loc) · 3.11 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
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
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
*{
font-family: 'Poppins',sans-serif;
margin: 0;
padding: 0;
box-sizing: border-box;
outline: none;
border: none;
text-decoration: none;
}
.main{
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
padding: 20px;
padding-bottom: 60px;
background: #1966a6;
background-image: linear-gradient(0deg, #0d4297 0%, #052529 100%);
}
.main form{
padding: 20px;
border-radius: 5px;
box-shadow: 0 5px 10px rgba(0,0,0,0.1);
text-align: center;
width: 500px;
border-radius: 5%;
background-color: #8996cf;
background-image: linear-gradient(0deg, #2fd8d6 0%, #97D9E1 100%);
}
.main form h3{
font-size: 30px;
text-transform: uppercase;
margin-bottom: 30px;
color: #333;
}
.main form h3:hover{
color: rgb(223, 19, 19);
transform: translateX(10px);
transition: 0.5s;
}
.main form input,.main form select{
width: 100%;
padding: 10px 15px;
font-size: 17px;
margin: 8px;
background: #eee;
border-radius: 5px;
}
.main form select option{
background: #fff;
}
.main form .form-btn{
background: #fbd0d9;
color: crimson;
text-transform: uppercase;
max-width: 40%;
font-size: 20px;
cursor: pointer;
margin-top: 10%;
}
.main form .form-btn:hover{
background: crimson;
color: #fff;
transition: 0.5s;
}
.main form p{
margin-top: 10px;
font-size: 20px;
color: #333;
}
.main form p a{
color: crimson;
}
.main form .error-msg{
margin: 1px 0;
margin-left: 10px;
display: flex;
align-self: flex-start;
font: bold;
font-family:Georgia, 'Times New Roman', Times, serif ;
color: rgb(244, 9, 9);
border-radius: 5px;
font-size: 17px;
justify-content:left;
}
.main form input{
cursor: pointer;
border: 1px solid #eee;
}
.main form input:hover{
border: 1px solid black;
}
.regsucbody{
background-color: #FF3CAC;
background-image: linear-gradient(225deg, #FF3CAC 0%, #784BA0 50%, #2B86C5 100%);
font-family: 'Anton', sans-serif;
}
.regsucdiv{
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
}
.regsuc{
color: #0407a8;
}
.regsuc:hover{
color: #fff;
transform: translateX(10px);
transition: 0.5s;
/* box-shadow: 5px 10px 10px #333; */
transform: scale(1.1);
}
@media only screen and (max-width: 400px){
.main form .form-btn{
font-size: 14px;
max-width: 50%;
}
}
.gender{
display: flex;
color: #0407a8;
}
.form-group{
margin-bottom: 15px;
}
label{
display: inline-block;
max-width: 100%;
margin-bottom: 5px;
font-weight: bold;
}
.radio label{
min-height: 20px;
padding-left: 20px;
margin-bottom: 0;
font-weight: normal;
cursor: pointer;
}
label[for="gender"]{
margin-left: -45%;
padding-bottom: 10px;
}
.radio-inline{
margin: 0px 30px;
cursor: pointer;
}
.radio-inline:hover{
color: crimson;
transform: scale(1.1);
transition: 0.5s;
}
label[for="gender"]{
margin-top: 10px;
font-size: 20px;
}
.gender-inline{
display: flex;
align-items: flex-start;
}