-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
51 lines (42 loc) · 790 Bytes
/
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
body {
background-color: #f5f5f5;
}
.login-container {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.login-box {
max-width: 400px;
background-color: #fff;
padding: 40px;
border-radius: 8px;
box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
}
.form-group {
margin-bottom: 20px;
}
.btn-primary {
background-color: #007bff;
border-color: #007bff;
}
.btn-primary:hover {
background-color: #0056b3;
border-color: #0056b3;
}
.text-decoration-none {
color: #007bff;
}
.text-decoration-none:hover {
text-decoration: underline;
}
.buttons-container {
display: flex;
justify-content: space-between;
margin-top: 20px;
}
.buttons-container .btn {
flex: 1;
margin: 0 1px;
}