﻿.contact {
    width: 30%;
    margin: auto;
    text-align: center;
    background: #efefef;
    margin-bottom: 30px;
}

.contact-box {
    margin-top: 5%;
    display: flex;
    justify-content: space-between;
    background: bottom #fff;
    box-shadow: 0 0 20px 0 #13629b;
}

form{
    margin: 35px;
}

.input-field {
    width: 100%;
    height: 40px;
    margin-top: 20px;
    padding-left: 10px;
    border: 1px solid #777;
    border-radius: 14px;
    outline: none;
    border-color: #13629b;
    text-align: center;
}

.textarea-field{
    height: 150px;
    padding-top: 10px;
}

.contact-btn {
    border-radius: 100vh;
    width: 80px;
    height: 80px;
    color: #fff;
    margin-top: 18px;
    background: #13629b;
    font-size: 12px;
    border: none;
    cursor: pointer;
}

@media(max-width: 990px) {
    .contact {
        width: 80%;
        margin: auto;
        text-align: center;
        margin-bottom: 30px;
    }

    .contact-box {
        margin-top: 5%;
        margin-left: 0;
        display: flex;
        justify-content: space-between;
        box-shadow: 10px;
    }
}

::selection {
    color: #fff;
    background: #13629b;
}