-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsignup.css
More file actions
83 lines (73 loc) · 1.38 KB
/
signup.css
File metadata and controls
83 lines (73 loc) · 1.38 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
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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: Arial, sans-serif;
background-color: #e0e7ff;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.signup-container {
background-color: #0ab0a2;
padding: 40px;
border-radius: 12px;
box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
width: 380px;
}
.signup-box {
background-color: #f3f4f6;
padding: 20px;
border-radius: 8px;
text-align: center;
}
.logo {
font-size: 2em;
color: rgb(34, 89, 172);
margin-bottom: 20px;
text-align: left;
}
h2 {
font-size: 1.5em;
color: #22a9b5;
margin-bottom: 20px;
}
form input {
width: 100%;
padding: 15px;
margin: 10px 0;
border: none;
border-radius: 8px;
background-color: #d1d5db;
}
form input:focus {
outline: none;
background-color: #e5e7eb;
}
button {
background-color: #005BB5;
color: white;
border: none;
padding: 15px;
width: 100%;
border-radius: 8px;
cursor: pointer;
}
button:hover {
background-color: #c25e17;
}
.image-overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-image: url('images/blur-hospital.jpg');
background-size: cover;
background-position: center;
opacity: 0.5;
z-index: -1; /* Keep the image behind the content */
}