-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsignup.css
More file actions
58 lines (51 loc) · 1.04 KB
/
Copy pathsignup.css
File metadata and controls
58 lines (51 loc) · 1.04 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
.login_outer{
height: 500px;
display: flex;
justify-content: center;
align-items: center;
}
.login_inner{
margin-top: 50px;
height: 400px;
width: 30%;
background-color: rgb(235, 235, 235);
border-radius: 50px;
box-shadow: 10px 10px 20px 0px rgba(161,161,161,1);
/* box-shadow: -10px -10px 20px 0px rgba(161,161,161,1); */
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
form{
font-family: 'Montserrat', sans-serif;
display: flex;
justify-content: space-between;
flex-direction: column;
width: 50%;
}
label, input{
margin-bottom: 10px;
}
.login{
font-family: 'Montserrat', sans-serif;
background-color: #FFCC57;
border: 0;
height: 40px;
border-radius: 20px;
}
.login:hover{
color: white;
transition: 0.25s;
}
.sign{
position: relative;
top: 20px;
font-family: 'Montserrat', sans-serif;
text-decoration: none;
color: #404046;
}
.sign:hover{
color: #FFCC57;
transition: .25s;
}