
form {
    display: flex;
    flex-direction: column;
    width: 40%;
    padding: 50px;
}

label {
    padding-bottom: 5px;
    padding-top: 20px;
    color: var(--primary-Light);
}

input,
textarea {
    background-color: var(--secundaty-Dark);
    color: aliceblue;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary-Light);
}

textarea {
    resize: none;
    margin-bottom: 15px;
}

footer {
    display: flex;
    justify-content: center;
    gap: 50px;
    padding-top: 150px;
    padding-bottom: 50px;
}

@media (max-width:900px) {
    .sectionForm {
        width: 90% !important;
    }

    form {
        width: 90% !important;
    }
}