-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSign_Up.css
More file actions
98 lines (86 loc) · 1.54 KB
/
Sign_Up.css
File metadata and controls
98 lines (86 loc) · 1.54 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
.container {
max-width: 900px;
margin: 0 auto;
padding: 40px;
margin-top: 10%;
overflow: hidden;
}
.password-visibility{
position: relative;
top: -39px;
left: 92%;
cursor: pointer;
font-size:17px;
}
.signup-grid {
display: grid;
grid-template-columns: 0.1fr 1.5fr 8fr;
grid-gap: 10px;
}
.signup-text {
margin-top: 30px;
grid-column: 1 / 4;
text-align: center;
}
.signup-text1 {
grid-column: -1 / 3;
text-align: right;
}
.signup-text1 span{
color: #3c79a7;
font-weight: 600;
cursor: pointer;
}
.signup-form {
grid-column: 2 / 4;
}
.signup {
flex: 1;
background-color: #fff;
padding: 40px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.signup h1 {
margin-bottom: 20px;
text-align: center;
color: #3c79a7;
letter-spacing:.1em;
}
.signup-role {
font-size: 16px;
margin-bottom: 10px;
}
.form-group {
margin-bottom: 20px;
}
.form-group label {
display: block;
margin-bottom: 5px;
font-weight: bold;
}
.form-control {
width: 40%;
padding: 8px;
font-size: 16px;
border: 1px solid #ccc;
border-radius: 4px;
}
.btn-group {
margin-top: .0001px;
margin-bottom: 20px;
}
.btn {
padding: 10px 20px;
font-size: 16px;
border: none;
border-radius: 4px;
cursor: pointer;
}
.btn-primary {
background-color: #007bff;
color: #fff;
}
.btn-danger {
background-color: #dc3545;
color: #fff;
}