@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,600);

body {
    font-family: 'Open Sans', sans-serif;
}

form {
    position: relative;
    margin: 20px auto;
    width: 300px;
}

h3 {
    font-size: 16px;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.8)
}

.submit__generated {
    display: inline-block;

    /* span {
        display: inline-block;
        width: 35px;
        height: 35px;
        vertical-align: center;
        line-height: 35px;
        font-weight: bold;
        font-size: 16px;
        color: rgba(0, 0, 0, 0.9);
        text-align: center;
        letter-spacing: 1px;
        text-transform: uppercase;
        border: 1px solid rgba(0, 0, 0, 0.1);
        border-radius: 4px;
    } */

}

.submit__input {
    border: none;
    border-bottom: 1px solid #e2e2e2;
    padding: 12px 0;
    background: #fff;
    letter-spacing: .7px;
    font-weight: 300;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    height: 44px;
    color: #a5a5a5;
    font-size: 14px;
    position: relative;
}



i.fa-refresh {
    margin: 4px 0 0px 5px;
    padding: 5px;
    font-size: 18px;
    color: rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transform-origin: center center;
    transition: transform 0.2s ease-out, color 0.2s ease-out;
}

span.submit__error,
span.submit__error--empty {
    color: #e74c3c;
    position: absolute;
    margin-top: 0px;
    margin-left: 100px;
}





.submit {
    display: block;
    padding: 7px 15px;
    font-weight: bold;
    font-size: 16px;
    color: #fff;
    letter-spacing: 1px;
    text-transform: uppercase;
    outline: none;
    border: 0;
    background-color: darkgray;
    background-clip: padding-box;
    border-radius: 3px;
    box-shadow: 0 4px 0 #2C81BA;
    opacity: 1;
    transition: transform 0.2s ease-out, opacity 0.2s ease-out;
}

.submit__overlay {
    height: 50px;
    width: 110px;
    background-color: rgba(255, 255, 255, 0.8);
    position: absolute;
    margin-top: -90px;
    margin-left: -5px;
}

.low-opa {
    opacity: 0.4;
}

.fadeOut {
    opacity: 0;
    transform: translateY(10px);
}

.fadeIn {
    opacity: 1 !important;
    transform: translateY(0px) !important;
}

.form-fields,
.form-success {
    transition: all 0.2s ease-out;
}

.form-success {
    opacity: 0;
    transform: translateY(-10px);
    margin-top: 20px;
}