@import "./style.css";
@import "./forms.css";

#sec1 {
    height: 137.5%;
   
}

.content.centered {
    top: 0px;
    height: fit-content;
}
#contact-form {
    height: 100%;
    background-color: white !important;
}
@media screen and (max-width: 1000px) and (max-height: 450px) {
    #sec1 {
        height: 275%;
    }
    .content.centered {
        width: 100%;
    }
    #contact-form {
        width: 100%;
    }
    textarea {
        width: 94.5% !important;
    }
}

@media screen and (min-width: 1100px) {
    #sec1 {
        height: calc(100% - 75px);
        background-image: linear-gradient(to top, green 50%, white 50%);
    }
    #contact-form-content {
        height: 100%;
        flex-flow: row;
        justify-content: center !important;
        align-items: flex-start;
    }
    #contact-form {
        width: 45%;
        height: fit-content;
        padding: 50px;
        box-shadow: 2px 2px 20px lightgrey;
    }
    form {
        height: 80%;
    }

    textarea {
        height: 100px !important;
    }
    #contact-form .rect-button {
        bottom: 0 !important;
    }
    #contact-form .title {
        margin: 0;
        margin-bottom: 25px;
    }
}