forked from tinkerhub/stackup-teamplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathregistration.css
60 lines (50 loc) · 995 Bytes
/
registration.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
body {
margin: 0;
padding: 0;
}
.outer-container {
background-color: #f4f4f4;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.inner-container {
background-color: #fff;
border-radius: 8px;
padding: 20px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
width: 300px; /* Set the width of the rectangular box as needed */
}
.form-content {
text-align: center;
}
.logo {
width: 80px;
height: 80px;
margin-bottom: 20px;
}
.form-group {
margin-bottom: 16px;
display: flex;
align-items: center;
}
label {
margin-right: 10px;
}
input,
select {
width: calc(100% - 10px);
padding: 10px;
box-sizing: border-box;
border: 1px solid #ccc;
border-radius: 4px;
}
input[type="submit"] {
background-color: #4caf50;
color: #fff;
cursor: pointer;
}
input[type="submit"]:hover {
background-color: #45a049;
}