#contact {
    background: url('../assets/images/bg-sea.jpg') no-repeat center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    padding: 50px 0;
}

.contact-form {
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    color: white;
}

.contact-form h2 {
    color: white;
    text-align: center;
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 90%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 5px;
    background: rgba(0, 0, 0, 0.4);
    color: white;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.contact-form button {
    padding: 10px 15px;
    background-color: rgba(0, 123, 255, 0.8);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-right: 5px;
}

.contact-form button:hover {
    background-color: rgba(0, 86, 179, 0.8);
}

.contact-form .clear-btn {
    background-color: rgba(220, 53, 69, 0.8);
}

.contact-form .clear-btn:hover {
    background-color: rgba(200, 35, 51, 0.8);
}

.notification {
    margin-top: 15px;
    font-size: 16px;
    color: #d9534f;
    display: none;
    text-align: center;
}
