-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathForm.css
More file actions
55 lines (53 loc) · 832 Bytes
/
Copy pathForm.css
File metadata and controls
55 lines (53 loc) · 832 Bytes
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
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap");
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: "Roboto", sans-serif;
width: 100%;
min-height: 100vh;
background: linear-gradient(
to bottom,
rgb(220, 238, 255),
rgb(114, 210, 255)
);
}
h3 {
text-align: center;
font-size: 2.5rem;
color: rgb(88, 89, 90);
margin: 1rem;
}
form {
margin: 2rem auto;
background: rgb(218, 247, 248);
padding: 1.5rem 3rem;
font-size: 1.2rem;
text-align: center;
}
.Patient_register {
width: 45%;
}
.Donor_register {
width: 45%;
}
.login {
width: 35%;
}
input {
font-size: 1rem;
margin-left: 1rem;
}
fieldset {
padding: 0.5rem;
}
legend {
font-size: 1rem;
}
button {
font-size: 1rem;
padding: 0.3rem 0.8rem;
cursor: pointer;
}