@import "./style.css";

#sec1 {
    height: 150%;
}
form {
    width: 100%;
}
.submit-button {
    top: 50px;
}
#form {
    top: 100px;
}
form .title.centered {
    text-align: center;
}
#referral-info {
    text-align: center;
}
input, textarea {
    width: calc(100% - 1em);
}
input {
    height: 25px;
}
textarea {
    height: 300px;
    overflow-y: scroll;
    resize: none;
}
.submit-button {
    width: 100%;
    height: 50px;
    background-color: blue;
    color: white;
}
.message.centered, #referral-info {
    text-align: center;
    color: blue;
}
.footer {
    top: 750px;
}
@media screen and (min-width: 1100px) {
    #sec1 {
        height: fit-content;
        justify-content: space-between;
        align-items: flex-start;
    }
    form {
        top: 50px !important;
        width: 35%;
        height: fit-content;
        padding: 50px;
        border: 1px solid lightgrey;
        border-radius: 10px;
        margin: 0 !important;
    }
    input, textarea {
        width: 350px;
        border: 1px solid black;
        border-radius: 5px;
        font-size: 14px;
    }
    input {
        height: 30px;
    }
    textarea {
        width: calc(100% - 1em);
    }
    .submit-button {
        top: 25px;
        font-size: 16px;
    }
    .footer {
        top: 500px;
    }
}