.contact_content{
    margin-top: 3rem;
    width: 50vw;
    margin-left: auto;
    margin-right: auto;
}

.form_input{
    width: 100%;
    border: 4px solid white;
    border-radius: 30px;
    padding: 20px;
    font-family: inherit;
    background-color:rgb(15, 23, 42);
    resize: vertical;
    outline: none; 
    color: white;
    margin-bottom: 30px;
    z-index: 2;
}

.form_input:focus {
    border-color: #008286;
}

.form-button {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

form button {
    justify-content: center;
    border-radius: 20px;
    outline: none;
    cursor: pointer;
    padding: 15px;
    transform: translateY(-60px);
    border: 3px solid #008286;
    background-color:rgb(15, 23, 42);
    color: white;
}

form {
    padding : 50px 0 100px 0;
}

.contact_content h2{
    text-align: center;
    font-family: "Rubik";
    color: #CB9C41;
}

@media (max-width:420px){
    .contact_content{
        width: 100%;
    }
}