RegisterPage.scss
1.69 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
#Register{
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background-image: linear-gradient( rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3) ), url("../images/register_background.png");
background-repeat: no-repeat;
background-position: center;
.register-form {
display: flex;
justify-content: space-around;
align-items: center;
flex-direction: row;
width: 500px;
height: 620px;
box-shadow: 0px 0px 20px #000;
}
h1 {
font-size: 40px;
color: white;
font-weight: bold;
text-align: center;
margin-bottom: 60px ;
}
.input-area {
display: flex;
justify-content: center;
align-items: center;
width: 400px;
position: relative;
margin-top: 20px;
font-weight: bold;
font-size: medium;
input {
width: 75%;
padding: 15px .8em .8em;
background-color: transparent;
border: 2px solid white;
border-radius: 30px;
font-size: 18px;
color: white;
outline: none;
}
.dropdown{
width: 75%;
padding: 15px .8em .8em;
background-color: transparent;
border: 2px solid white;
border-radius: 30px;
font-size: 18px;
color: white;
outline: none;
}
label {
position: absolute;
left: 10px;
top: -2px;
font-size: 14px;
color: white;
}
}
.btn-area {
display: flex;
justify-content: space-evenly;
margin-top: 30px;
.register-btn {
width: 170px;
height: 55px;
background-color: transparent;
font-size: 20px;
color: white;
border: 2px solid white;
font-weight: bold;
border-radius: 25px;
cursor: pointer;
}
}
}