.content-logo {
    height:240px;
    background-image: url("../static_images/side_contact_v.png");    
}

.background {
    background-image: url("../static_images/background6.jpg");
}

.form-layout {
    padding: 30px;
    padding-right: 90px;
    border-top: 5px rgba(200, 200, 200, 0.9) double;
    border-bottom: 5px rgba(200, 200, 200, 0.9) double;
    min-width: 200px;
    max-width: 500px;
    background-color: rgba(255, 255, 255, 0.0);
}

.c-form-text {
    height: 2em;
    width: 100%;
    padding: 0 16px;
    border-radius: 4px;
    border: 1px rgba(150,150,150, 1.0) dashed;
    box-shadow: 0 0 0 0px #ccc inset;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    font-size: 1.2rem;
    background-color: #ffffffdd;
}

.c-form-text:focus {
    outline: 0;
    border: none;
    box-shadow: 0 0 0 2px rgb(33, 150, 243) inset;
}

.c-form-textarea {
    display: block;
    width: 100%;
    height: 10rem;
    padding: 16px 16px;
    border-radius: 4px;
    border: 1px rgba(150,150,150, 1.0) dashed;
    box-shadow: 0 0 0 0px #ccc inset;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    resize: vertical;
    font-size: 1.2rem;
    background-color: #ffffffdd;
}

.c-form-textarea:focus {
    outline: 0;
    border: none;
    box-shadow: 0 0 0 2px rgb(33, 150, 243) inset;
}

.c-form-submit-button {
    display: inline-block;
    width: 200px;
    padding: 8px;
    border: none;
    border-radius: 4px;
    background-color: rgb(0, 186, 22);
    color: #fff;
    font-weight: bold;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    border: 2px solid transparent;
    font-size: 1.2rem;
}

.c-form-submit-button:hover {
    background-color: rgb(68, 255, 90);
}

.c-form-submit-button:focus {
    outline: 0;
    background-color: rgb(68, 255, 90);
    border: 2px solid rgb(33, 150, 243);
}

.red {
    color: red;
}

.hide {
    visibility: hidden;
}