-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathregstyle.css
112 lines (100 loc) · 1.58 KB
/
regstyle.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
* {
margin: 0;
padding: 0;
-webkit-box-sizing: border-box;
box-sizing: border-box;
letter-spacing: 1;
}
html,
body {
background-color: #f0f8ff;
color: #313131;
font-family: "Lato", "Arial", sans-serif;
font-size: 21px;
font-weight: 300;
text-rendering: optimizeLegibility;
overflow-x: hidden;
}
.reg-container,
.login-container {
padding: 16px;
text-align: center;
}
.submitbtn,
.loginbtn {
margin: auto;
padding: 10px;
text-align: center;
}
.tandc,
.forgotpass {
margin: auto;
font-size: 17px;
text-align: center;
}
.forgotpass {
margin-top: 10px;
}
a {
text-decoration: none;
}
input[type="text"],
input[type="tel"],
input[type="email"],
input[type="password"] {
width: 40%;
padding: 3px;
border: 1px solid #ccc;
border-radius: 4px;
transition: 0.04s;
outline: none;
}
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="email"]:focus,
input[type="password"]:focus {
border-bottom: 2px solid #cf6d17;
}
.tag1 {
margin-right: 36px;
}
.tag2 {
margin-right: 115px;
}
.tag3 {
margin-right: 115px;
}
.tag4 {
margin-right: 80px;
}
.tag5 {
margin-right: 5px;
}
.tag6 {
margin-right: 115px;
}
.tag7 {
margin-right: 80px;
}
.headings {
margin-top: 10px;
text-align: center;
}
.signupdivs {
margin-top: 8px;
}
.button {
border: 1px solid #e67e22;
color: #e67e22;
background-color: white;
padding: 14px 28px;
cursor: pointer;
border-radius: 100px;
font-size: 16px;
transition: background-color 0.2s, border 0.2s, color 0.2s;
}
.button:hover,
.button:active {
background-color: #e67e22;
color: #fff;
}