Update forms.html
Browse files- forms.html +8 -9
forms.html
CHANGED
|
@@ -9,7 +9,10 @@
|
|
| 9 |
margin: 0;
|
| 10 |
padding: 0;
|
| 11 |
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
| 12 |
-
background:
|
|
|
|
|
|
|
|
|
|
| 13 |
display: flex;
|
| 14 |
justify-content: center;
|
| 15 |
align-items: center;
|
|
@@ -19,21 +22,17 @@
|
|
| 19 |
.form-container {
|
| 20 |
width: 90%;
|
| 21 |
max-width: 700px;
|
| 22 |
-
background-color:
|
| 23 |
-
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.
|
| 24 |
border-radius: 12px;
|
| 25 |
overflow: hidden;
|
| 26 |
padding: 20px;
|
| 27 |
-
|
| 28 |
-
}
|
| 29 |
-
|
| 30 |
-
.form-container:hover {
|
| 31 |
-
transform: scale(1.01);
|
| 32 |
}
|
| 33 |
|
| 34 |
h1 {
|
| 35 |
text-align: center;
|
| 36 |
-
color: #
|
| 37 |
margin-bottom: 20px;
|
| 38 |
}
|
| 39 |
|
|
|
|
| 9 |
margin: 0;
|
| 10 |
padding: 0;
|
| 11 |
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
| 12 |
+
background-image: url('https://scitechdaily.com/images/Black-Hole-Event-Horizon-Artistic-Illustration-1536x1024.jpg');
|
| 13 |
+
background-size: cover;
|
| 14 |
+
background-position: center;
|
| 15 |
+
background-attachment: fixed;
|
| 16 |
display: flex;
|
| 17 |
justify-content: center;
|
| 18 |
align-items: center;
|
|
|
|
| 22 |
.form-container {
|
| 23 |
width: 90%;
|
| 24 |
max-width: 700px;
|
| 25 |
+
background-color: rgba(255, 255, 255, 0.9);
|
| 26 |
+
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
|
| 27 |
border-radius: 12px;
|
| 28 |
overflow: hidden;
|
| 29 |
padding: 20px;
|
| 30 |
+
backdrop-filter: blur(6px);
|
|
|
|
|
|
|
|
|
|
|
|
|
| 31 |
}
|
| 32 |
|
| 33 |
h1 {
|
| 34 |
text-align: center;
|
| 35 |
+
color: #212529;
|
| 36 |
margin-bottom: 20px;
|
| 37 |
}
|
| 38 |
|