-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
126 lines (109 loc) · 2.25 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
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
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
}
body {
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
background: url('medical-desk-arrangement-pink-background.jpg') no-repeat;
background-size: cover;
background-position: center;
}
.wrapper {
background-color: #0000005e;
position: relative;
display: flex;
justify-content: center;
align-items: center;
width: 400px;
height: 500px;
box-shadow: 0 0 60px #000;
border-radius: 10px;
}
h2 {
font-size: 2em;
color: #ffffff;
text-align: center;
}
.input-group {
position: relative;
width: 320px;
margin: 30px 0;
}
.input-group input {
width: 100%;
height: 40px;
font-size: 1em;
color: #fff;
padding: 0 10px 0 35px;
background: rgba(255, 255, 255, 0.253);
border: 1px solid #fff;
outline: none;
border-radius: 5px;
}
.input-group input::placeholder {
color: rgb(255, 255, 255);
}
.input-group .icon {
position: absolute;
display: block;
left: 10px;
color: #fff;
font-size: 1.2em;
line-height: 45px;
}
.forgot-pass {
margin: -15px 0 15px;
}
.forgot-pass a {
color: #fff;
font-size: .9em;
text-decoration: none;
}
.forgot-pass a:hover {
text-decoration: underline;
}
.btn {
position: relative;
width: 100%;
height: 40px;
background: #00c2a7;
box-shadow: 0 2px 10px rgba(0, 0, 0, .4);
font-size: 1em;
color: #fff;
font-weight: 500;
cursor: pointer;
border-radius: 5px;
border: none;
outline: none;
transition: .5s;
}
.btn:hover {
background: #05d7d7;
color: #00c2a7;
}
.sign-link {
font-size: .9em;
text-align: center;
margin: 25px 0;
}
.sign-link p {
color: #fff;
}
.sign-link p a {
color: #00c2a7;
text-decoration: none;
font-weight: 600;
}
.sign-link p a:hover {
text-decoration: underline;
}
.none {
color: whitesmoke;
text-decoration: none;
}