-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
130 lines (121 loc) · 2.15 KB
/
styles.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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
body{
width: 100%;
height: 100px;
margin: 0px;
background-color: #F3F9FB;
overflow-y: hidden;
}
.login{
width:900px;
height: 600px;
background-color: rgba(255,255,255,0.55);
backdrop-filter: blur(15px);
border-radius: 10px;
padding: 5px;
border: 2px solid white;
box-shadow: 8px 8px 10px rgba(0,0,0,0.4);
position: fixed;
top: 100px;
left: 265px;
}
.vl{
border-left: 2px solid #1E56A0;
height: 500px;
position: fixed;
left: 750px;
top: 150px;
}
.svg1 {
filter: drop-shadow(8px 8px 8px rgb(0 0 0 / 0.5));
/* display: inline-block; */
position: fixed;
top: 0;
left: 0;
z-index: -1;
}
*,
*:before,
*:after{
padding: 0;
margin: 0;
box-sizing: border-box;
}
form{
height: 600px;
width: 406px;
position: absolute;
transform: translate(-50%,-50%);
top: 380px;
left: 695px;
border-radius: 10px;
padding: 50px 35px;
}
form *{
font-family: 'Montserrat';
color: #163172;
letter-spacing: 0.5px;
outline: none;
border: none;
}
form h3{
font-weight: bolder;
font-size: 32px;
font-weight: 500;
line-height: 42px;
text-align: center;
position: relative;
bottom: 65px;
}
label{
display: block;
margin-top: 30px;
font-size: 18px;
font-weight: 500;
}
input{
display: block;
height: 50px;
width: 100%;
background-color: rgba(255,255,255,0.07);
border-radius: 3px;
padding: 0 10px;
margin-top: 20px;
font-size: 14px;
font-weight: 300;
}
::placeholder{
color: #e5e5e5;
}
button{
margin-top: 50px;
width: 100%;
background-color: #ffffff;
color: #080710;
padding: 15px 0;
font-size: 18px;
font-weight: 600;
border-radius: 5px;
cursor: pointer;
}
.social{
margin-top: 30px;
display: flex;
}
.social div{
background: red;
width: 150px;
border-radius: 3px;
padding: 5px 10px 10px 5px;
background-color: rgba(255,255,255,0.27);
color: #eaf0fb;
text-align: center;
}
.social div:hover{
background-color: rgba(255,255,255,0.47);
}
.social .fb{
margin-left: 25px;
}
.social i{
margin-right: 4px;
}