This commit is contained in:
Harikrishnan Gopal
2024-12-17 11:21:25 +05:30
parent ce73a591c5
commit b4adca13c7
7 changed files with 702 additions and 461 deletions

View File

@@ -69,6 +69,38 @@ button[type="submit"] {
width: 50%;
}
.suggestions {
list-style-type: none;
margin: 0;
padding: 0;
border: 1px solid #ccc;
max-height: 150px;
overflow-y: auto;
background: #fff;
position: absolute;
width: 100%;
z-index: 10;
}
.suggestions li {
padding: 8px;
cursor: pointer;
}
.suggestions li:hover {
background-color: #f0f0f0;
}
.error-message {
color: red;
font-size: 12px;
}
.error input {
border-color: red;
}
@media (max-width: 768px) {
.form-container {
margin: 20px;