.contact-form-box {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;

}

form {
    width: 40%;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: end;
}

form>div {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin: 20px 0;
}

form>div>label {
    width: 40%;
    text-align: left;
    margin-right: 10px;
    color: var(--p-color);
    font-family: 'Montserrat';
    font-weight: 200;
    font-size: 14px;

}


form>div>input {
    width: 100%;
    padding: 10px;
    padding-left: 0;
    margin: 10px 0;
    border: 0px solid #ccc;
    background-color: transparent;
    border-bottom: .5px solid var(--p-color);
    color: var(--p-color);
    outline: none;
    margin: 0;
}


form>div>textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 0px solid #ccc;
    background-color: transparent;
    border-bottom: .5px solid var(--p-color);
    color: var(--p-color);
    outline: none;
    margin: 0;
    padding-left: 0;

}

form>button {
    padding: 8px 50px;
    margin: 10px 0;
    border: 1px solid var(--p-color);
    background-color: transparent;
    color: var(--p-color);
    font-family: 'Montserrat';
    font-weight: 200;
    font-size: 14px;
    outline: none;
    cursor: pointer;
    border-radius: 20px;
    margin-top: 20px;
}

#message {
    color: var(--p-color);
    height: unset;
    font-family: 'Montserrat';
    font-weight: 200;
}

@media screen and (max-width: 1100px) {
    form {
        width: 60%;
    }


}

@media screen and (max-width: 900px) {
    form {
        width: 100%;
        padding: 30px;
    }

    form>div>label {
        font-size: small;
    }

    form>button {
        margin: 0;
    }
}