@charset "UTF-8";
/* CSS Document */
/* generic  */

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { display: block }


/* ** form styling *
   ================================================== */

/* * we remove the red glow around required fields since we are already using the red star
   ================================================== */

input:required, textarea:required {
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
}

/* * inputs and textarea*
   ================================================== */

input:not([type="submit"]), textarea {
    outline: none;
    display: block;
    width: 100%;
    padding: 4px 10px;
    border: 0px;
    color: #000000;
    font-size: 1rem;
    background: linear-gradient(-90deg, rgba(255, 64, 180, 0.1), rgba(56, 212, 48, 0.1));
    /*transition*/
    -webkit-transition: background 0.2s linear, box-shadow 0.6s linear;
    -moz-transition: background 0.2s linear, box-shadow 0.6s linear;
    -o-transition: background 0.2s linear, box-shadow 0.6s linear;
    transition: background 0.2s linear, box-shadow 0.6s linear;
}

input:not([type="submit"]):active, textarea:active, input:not([type="submit"]):focus, textarea:focus {
    background: linear-gradient(-90deg, rgba(255, 64, 180, 0.2), rgba(56, 212, 48, 0.2));
}

input:not([type="submit"]) { height: 45px }

/* placeholder  */

::-webkit-input-placeholder {
    color: #38d430;
}

input:-moz-placeholder, textarea:-moz-placeholder {
    color: #38d430;
}

textarea {
    min-height: 250px;
    resize: vertical;
}

p { margin-bottom: 20px }

.indication {
    color: #ff40b4;
    font-size: 0.8rem;
    font-style: italic;
    text-align: left;
    padding-right: 10px;
}

.required { 
    color: #38d430 
}

/* * Styling the send button *
   ================================================== */

input[type=submit] {
    cursor: pointer;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1rem;
    padding: 5px 12px;
    background: #38d430;
    /*transition*/
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}
input[type=submit]:hover {
    background: #ff40b4;
}

input[type=submit]:active, input[type=submit]:focus {
    position: relative;
    top: 1px;
    background: #38d430;
}
