-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
94 lines (93 loc) · 1.62 KB
/
style.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
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400&display=swap');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Lato', sans-serif;
background: url(./img/wallpaper.jpg);
background-size: cover;
background-repeat: no-repeat;
background-position: center;
}
.container {
width: 100vw;
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
}
.login-form {
width: 320px;
height: 380px;
background-color: #fff;
border-radius: 10px;
}
.profile-pic {
display: flex;
align-items: center;
justify-content: center;
}
.profile-pic img {
width: 100px;
height: 100px;
border-radius: 50%;
position: absolute;
}
form {
margin-top: 50px;
padding: 10px 20px;
}
h1 {
text-align: center;
font-size: 25px;
padding: 10px;
}
form label {
display: block;
font-size: 18px;
padding: 5px 0;
}
.input-field {
display: flex;
align-items: center;
justify-content: center;
margin: 0 0 10px 0;
border-bottom: 2px solid dodgerblue;
transition: all 0.4s;
}
.input-field:hover {
border-bottom: 2px solid green;
}
form input {
width: 100%;
font-size: 20px;
padding: 5px 10px;
border: none;
outline: none;
}
.forget {
text-decoration: none;
color: red;
cursor: pointer;
display: block;
}
.login a {
width: 100%;
padding: 10px 20px;
margin: 20px 0;
text-align: center;
text-decoration: none;
display: block;
background-color: #0386f6;
color: #fff;
border-radius: 100px;
font-size: 18px;
font-weight: bold;
letter-spacing: 2px;
transition: all 0.4s;
}
.login a:hover {
background-color: #0373d3;
}