-
Notifications
You must be signed in to change notification settings - Fork 0
/
Signin.css
73 lines (62 loc) · 1.22 KB
/
Signin.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
body {
font-family: Arial, sans-serif;
background-color: #f0f0f0;
}
body
{
display: flex;
align-items: center;
justify-content: center;
min-height: 100vh;
background: url(login_background.jpg) no-repeat center center/cover;
}
.logo-container {
display: flex;
align-items: center;
margin-bottom: 20px;
}
.logo-container img {
width: 75px;
height: auto;
margin-right: 10px;
}
.login-form h2 {
margin: 0;
font-style:normal;
font-size:30px;
}
.container {
width: 400px;
margin: 40px auto;
padding: 20px;
background-color: #fff;
border: 1px solid #f3ecec;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.login-form {
margin: 20px;
}
label {
display: block;
margin-bottom: 10px;
}
input[type="text"], input[type="password"] {
width: 90%;
height: 20px;
margin-bottom: 20px;
padding: 10px;
border: 1px solid #ccc;
}
input[type="submit"] {
width: 100%;
height: 40px;
background-color: #4CAF50;
color: #fff;
padding: 10px;
border: none;
border-radius: 5px;
cursor: pointer;
}
input[type="submit"]:hover {
background-color: #3e8e41;
}