body {
    overflow-x: hidden;
    font-family: 'Poppins', sans-serif;
    margin: 0 auto;
    background: rgb(177,89,127);
    background: linear-gradient(90deg, rgba(177,89,127,1) 0%, rgba(71,88,160,1) 100%);
}
section {
    height: 100vh;
}
.home-table {
    display: table;
    width: 100%;
    height: 100%;
}
.home-table-center {
    display: table-cell;
    vertical-align: middle;
}
.login-box {
    border-radius: 4px;
    margin-top: 25px;
    border: none;
    background: #fff;
    transition: all .4s;
    vertical-align: top;
    padding:30px;
}
.login-box .titleH2 {
    font-size: 24px;
    color: #3866ad;
    font-weight: 600;
    line-height: 14px;
    padding-bottom: 15px;
}
.form-control {
    border-radius: 4px;
    border: 1px solid #dee7f4;
    box-shadow: none !important;
    height: calc(1.6em + 1.3rem + 2px);
    font-size: 14px;
}
/*orange*/
.btn-orange {
    background-color: #f96402;
    color: #fff !important;
    font-size: 18px;
    transition: all 0.5s;
    border-radius: 4px;
    padding: 10px 22px;
    text-transform: uppercase;
    text-align: center;
    width: 100%;
}
.btn-orange:hover  {
    background-color: #2d80ff;
    color: #fff;
}
.has-error .help-block,
.has-error .control-label,
.has-error .radio,
.has-error .checkbox,
.has-error .radio-inline,
.has-error .checkbox-inline,
.has-error.radio label,
.has-error.checkbox label,
.has-error.radio-inline label,
.has-error.checkbox-inline label {
    color: #a94442;
}
.has-error .form-control {
    border-color: #a94442;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
}
.has-error .form-control:focus {
    border-color: #843534;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #ce8483;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #ce8483;
}
.has-error .input-group-addon {
    color: #a94442;
    background-color: #f2dede;
    border-color: #a94442;
}
.has-error .form-control-feedback {
    color: #a94442;
}
h1 {
    font-size: 46px;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
}