form {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 50vw;
    background-color: rgba(80, 80, 80, 0.4);
    padding: 20px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

@media screen and (max-width: 768px) {
    form {
        width: auto;
    }
}

form * {
    margin: 10px;
}

label {
    display: none;
}

input, textarea {
    padding: 10px;
    border: 0;
    width: 100%;
    border-radius: 5px;
    background-color: rgba(0, 0, 0, 0.49);
    color: white;
    font-family: Arial, sans-serif;
    margin: 0 0 10px;
}

input::placeholder, textarea::placeholder {
    color: #9b9b9b;
}

textarea {
    resize: vertical;
    height: 100px;
}

button {
    padding: 10px;
    background-color: #2D2D2D;
    color: white;
    border: 0;
    border-radius: 5px;
}

button:hover {
    background-color: #494949;
    cursor: pointer;
}

#contact {
    background-image: url('../img/bg_form.jpg');
    background-size: cover;
    background-position: center;
}

