-
Notifications
You must be signed in to change notification settings - Fork 0
/
register.css
91 lines (77 loc) · 1.54 KB
/
register.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
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
body {
background-color: #f1f1f1; /* fallback color */
background-image: url("../img/body_bg.png");
background-size: cover;
background-repeat: no-repeat;
-ms-background-size: cover; /* IE 9 */
background-size: cover\9; /* IE 8 */
}
.container {
margin-left: 90px;
}
section.form {
display: flex;
justify-content: center;
align-items: center;
height: 22vh; /* set the height to full viewport height to center it vertically */
}
.row {
border-radius: 30px;
margin: 500px auto 0;
height: 660px;
}
img {
border-top-left-radius: 30px;
border-bottom-left-radius: 30px;
}
.register {
margin-top: -55px;
margin-left: 30px;
font-weight: bold;
}
.register_labels {
font-size: 17px;
font-weight: bold;
}
.form {
margin-left: 30px;
}
.custom-input {
width: 120%;
}
.btn2 {
border: none;
outline: none;
height:50px;
width: 40%;
background-color: black;
color: white;
border-radius: 4px;
font-weight: bold;
}
.btn2:hover {
background: white;
border: 1px solid;
color: black;
}
.input-group {
position: relative;
width: 120%;
}
.input-group input[type="password"] {
padding-right: 25px;
}
.input-group button {
position: absolute;
top: 50%;
right: 10px;
transform: translateY(-50%);
border: none;
background-color: transparent;
cursor: pointer;
}