-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlgstyles.css
More file actions
58 lines (53 loc) · 1.13 KB
/
lgstyles.css
File metadata and controls
58 lines (53 loc) · 1.13 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
body {
margin: 0;
padding: 0;
font-family: Poppins, sans-serif;
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
background-image: url(https://img.freepik.com/free-vector/abstract-business-professional-background-banner-design-multipurpose_1340-16856.jpg);
background-color: #f6f6f6;
}
form {
background-color: rgba(248, 248, 251, 0.8);
padding: 20px;
width: 400px;
margin: 0 auto;
border-radius: 24px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
text-align: center;
}
input, select {
padding: 10px;
margin: 5px;
width: 70%;
box-sizing: border-box;
border-radius: 12px;
border: 0;
}
button {
padding: 12px;
margin: 10px 0;
background-color: #4CAF50;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
}
button:hover{
background-color: black;
}
button:active{
background-color: black;
text-decoration: underline;
}
.error-message {
color: red;
}
.doctor-fields {
display: none;
}
.patient-fields {
display: block;
}