.contact-form {
    width: 80%;
    margin: 0 auto;
    margin-top: 150px;
    margin-bottom: 80px;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 15px;
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
}

.content-wrapper p {
    text-align: center;
}

#name-mail {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
    margin-top: 30px;
}

#name-mail input {
    width: 40%;
}

input {
    border: 2px solid black;
    background-color: rgba(255, 255, 255, 0.30);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 10px 20px 10px 20px;
    font-family: "Archivo";
    font-weight: 300;
    font-size: 14px;
    color: black;
}

input::placeholder {
    font-family: "Archivo";
    font-weight: 200;
    font-size: 14px;
    color: black;
    opacity: 0.8;
}

#message {
    width: 94%;
    border: 2px solid black;
    border-radius: 18px;
    height: 200px;
    padding: 10px 20px 10px 20px;
    font-family: "Archivo";
    font-weight: 300;
    font-size: 14px;
    color: black;
    background-color: rgba(255, 255, 255, 0.30);
    backdrop-filter: blur(10px);
}

#submit {
    font-family: "Archivo";
    font-weight: 500;
    font-size: 15px;
}

#form-info {
    width: 60%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1300px) {
#form-info {
    width: 90%;
}
}

@media (max-width: 1130px) {
#name-mail {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

#name-mail input {
    width: 96%;
}
}

@media (max-width: 950px) {
.contact-form {
    margin-top: 100px;
}
}

@media (max-width: 630px) {
.contact-form {
    margin-top: 100px;

}
}