
.container {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.contact-left {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 20px;
}

.contact-left-title h2{
    font-size: 2.5vw;
    margin-bottom: 5px;
}

.contact-left-title hr {
    border: none;
    width: 10vw;
    height: 5px;
    background-color: black;
    border-radius: 10px;
    margin-bottom: 20px;
}

.contact-inputs {
    width: 30vw;
    height: 50px;
    border: none;
    outline: none;
    padding-left: 25px;
    color: black;
    border-radius: 50px;
}

textarea {
    height: 25vw;
}

button {
    display: block;
    /* align-self: center; */
    /* justify-self: center; */
    border-radius: 50px;
    cursor: pointer;
    border: 0;
    width: fit-content;
    padding-left: 15px;
    padding-right: 15px;
    background-color: #33A1FD;
    box-shadow: 10px 10px 10px rgb(36, 36, 77);
    font-size: 1.5vw;
    text-decoration: underline;
    color: black;
}

button:hover {
    background-color: #286394;
    color: white;
}