-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontactUs.css
More file actions
178 lines (149 loc) · 2.48 KB
/
contactUs.css
File metadata and controls
178 lines (149 loc) · 2.48 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
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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: Arial, sans-serif;
background: url('images/blur-hospital.jpg') no-repeat center center fixed;
background-size: cover;
color: #fff;
margin: 0;
padding: 0;
}
/* Navigation Bar */
.navbar {
display: flex;
justify-content: space-between;
align-items: center;
background-color: #0d52b9;
/* Primary color */
color: white;
padding: 10px 20px;
}
.navbar .logo h1 {
font-size: 1.8rem;
font-weight: bold;
}
.menu-links {
list-style: none;
display: flex;
}
.menu-links li {
margin-left: 20px;
}
.menu-links a {
text-decoration: none;
color: white;
font-size: 1rem;
transition: color 0.3s ease;
}
.menu-links a:hover {
color: #f8f9fa;
/* Light hover effect */
}
.container {
max-width: 1200px;
margin: auto;
padding: 20px;
background-color: rgba(255, 255, 255, 0.6);
/* Add a semi-transparent overlay */
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.container {
max-width: 1200px;
margin: auto;
padding: 20px;
}
.header {
text-align: left;
}
.header h1 {
font-size: 2.5rem;
color: rgb(17, 30, 127);
}
.content {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
align-items: flex-start;
}
.image-section img {
max-width: 100%;
height: auto;
border-radius: 10px;
}
.form-section {
flex: 1;
max-width: 400px;
margin-left: 20px;
background-color: #508fd4;
padding: 20px;
border-radius: 10px;
}
.form-section h2 {
text-align: left;
margin-bottom: 20px;
font-size: 1.5rem;
border-bottom: 2px solid white;
display: inline-block;
}
form label {
display: block;
margin: 10px 0 5px;
}
form input,
form textarea {
width: 100%;
padding: 10px;
margin-bottom: 15px;
border: none;
border-radius: 5px;
}
form input:focus,
form textarea:focus {
outline: none;
}
.checkbox {
display: flex;
align-items: center;
}
.checkbox input {
margin-right: 10px;
}
.checkbox a {
color: #77e1a1;
text-decoration: none;
}
button {
width: 100%;
padding: 10px;
background-color: #77e1a1;
color: #1c5b85;
border: none;
border-radius: 5px;
font-size: 1rem;
cursor: pointer;
}
button:hover {
background-color: #5ec092;
}
.footer {
margin-top: 20px;
display: flex;
justify-content: space-between;
padding: 20px;
background-color:#376fab;
border-radius: 10px;
}
.contact div {
text-align: center;
}
.contact h3 {
color: yellow;
}
.contact p {
color: #fff;
margin: 5px 0;
}