body {
    background:#efefef;
    padding:0;
}
.wrapper {
    margin:0 auto;
    width: 100%;
    background:#fff;
    padding:24px 34px 34px 34px;
    font-size:1.05rem;
    line-height:1.5rem;    
}
@media screen and (min-width:700px) {
    .wrapper {
        margin:40px auto;
        width: 680px;
        border-radius:10px;
        box-shadow: 0 0 20px 0 rgba(0,0,0,0.1);
    }
}

.logo-container {
    display:block;
    text-align:center;
    padding-bottom:20px;
    margin-bottom:20px;
    border-bottom: solid 1px #3e7435;
}
h3 {
    margin-bottom:20px;
}
.logo {
    width:200px;
    height:auto;
    margin:0 auto;
}
label {
    margin:8px 0 5px 0;
    font-weight:600;
}

label.error {
    font-weight:normal;
    color:#de0029;
    position:absolute;
    top:1px;
    right:12px;
    font-size:15px;
}
em {
    display:block;
    font-size:13px;
    line-height:16px;
    margin-top:3px;
}
.form-control {
    font-size:1.1rem;
    padding:7px 12px;
}
.form-control.error {
    background:#ffe1e7;
}
.btn-default,
.btn-primary {
    padding: 4px 22px;
}
.btn-default {
    background:#d6d6d6;
}
.btn-default:hover {
    background:#c4c4c4;
}
.float-end {
    float:right;
}
hr {
    border:0;
    border-top:solid 1px #3e7435;

}
.email {
    position: absolute;
  left: -9999px;
  top: 0;
  height: 0;
  width: 0;
  overflow: hidden;
}

.container-progress {
    display:none;
    text-align:center;
    padding:40px 0
}
.container-success {
    display:none;
}

.loader {
    width: 32px;
    height: 32px;
    border: 4px solid #3e7435;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
    margin:0 auto 10px auto;
    }

    @keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
    } 