.contact-left-cell {
    width: 550px;
    min-width: 550px;
    align-content: left;
    text-align: left;
    vertical-align: top;
    vertical-align: text-top;
}
.contact-right-cell {
    width: 450px;
    min-width: 450px;
    align-content: left;
    text-align: left;
    padding-left: 20px;
    vertical-align: top;
    vertical-align: text-top;
}

.text-box {
    width: 400px;
    height: 50px;
    border: 0px;
    border-bottom: 2px solid #6a6a6a;
    font-family: montserrat-light;
    font-size: 25px;
    outline: 0px;
}

.text-box-error {
    -webkit-animation: text-box-error-animation 2s;
    -moz-animation: text-box-error-animation 2s;
    -o-animation: text-box-error-animation 2s;
    animation: text-box-error-animation 2s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

@-ms-keyframes text-box-error-animation {
    0% { border-bottom: 2px solid #6a6a6a; }
    50% { border-bottom: 2px solid #f00; }
    100% { border-bottom: 2px solid #6a6a6a; }
}
@-moz-keyframes text-box-error-animation {
    0% { border-bottom: 2px solid #6a6a6a; }
    50% { border-bottom: 2px solid #f00; }
    100% { border-bottom: 2px solid #6a6a6a; }
}
@-webkit-keyframes text-box-error-animation {
    0% { border-bottom: 2px solid #6a6a6a; }
    50% { border-bottom: 2px solid #f00; }
    100% { border-bottom: 2px solid #6a6a6a; }
}
@keyframes text-box-error-animation {
    0% { border-bottom: 2px solid #6a6a6a; }
    50% { border-bottom: 2px solid #f00; }
    100% { border-bottom: 2px solid #6a6a6a; }
}

.text-area {
    width: 500px;
    height: 300px;
    background-color: transparent;
    border: 2px solid #6a6a6a;
    font-family: montserrat-light;
    font-size: 20px;
    color: #000;
    padding: 10px;
    outline: 0px;
    resize: none;
}

.text-area-error {
    -webkit-animation: text-area-error-animation 2s;
    -moz-animation: text-area-error-animation 2s;
    -o-animation: text-area-error-animation 2s;
    animation: text-area-error-animation 2s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

@-ms-keyframes text-area-error-animation {
    0% { border: 2px solid #6a6a6a; }
    50% { border: 2px solid #f00; }
    100% { border: 2px solid #6a6a6a; }
}
@-moz-keyframes text-area-error-animation {
    0% { border: 2px solid #6a6a6a; }
    50% { border: 2px solid #f00; }
    100% { border: 2px solid #6a6a6a; }
}
@-webkit-keyframes text-area-error-animation {
    0% { border: 2px solid #6a6a6a; }
    50% { border: 2px solid #f00; }
    100% { border: 2px solid #6a6a6a; }
}
@keyframes text-area-error-animation {
    0% { border: 2px solid #6a6a6a; }
    50% { border: 2px solid #f00; }
    100% { border: 2px solid #6a6a6a; }
}

.select-box {
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 400px;
    height: 50px;
    border: 0px;
    border-bottom: 2px solid #6a6a6a;
    font-family: montserrat-light;
    font-size: 25px;
    outline: 0px;
    
    border-radius: 0px;
}

.select-box:hover {
    cursor: pointer;
}

.modern-submit-button {
    width: 411px;
    height: 70px;
    background-color: transparent;
    border: 2px solid #6a6a6a;
    font-family: montserrat-light;
    font-size: 25px;
    color: #6a6a6a;
    outline: 0px;
}

.modern-submit-button:hover {
    cursor: pointer;
    color: #000;
    background-color: #6a6a6a;
}