body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 12px;
    height: 100vh;
}

#content {
    margin: 20px;
}

.background-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #0D2F66;
    z-index: 1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.background-pattern:before {
    content: '';
    z-index: 2;
    position: absolute;
    background: url('../img/cloudsuite-pattern-seamless-trans.png') repeat;
    opacity: 0.4;
    -moz-opacity: 0.5;
    -khtml-opacity: 0.5;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.error {
    text-align: center;
    color: #D0021B;
    float: left;
    width: 100%;
    height: auto;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
}

.container {
    position: relative;
    z-index: 20;
    width: 100%;
    height: 100%;
}


.login {
    position: relative;
    margin: auto;
    width: 460px;
    height: auto;
    background: #fff;
    top: 50%;
    transform: translateY(-50%);
    -webkit-box-shadow: 3px 3px 3px 0 rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 3px 3px 3px 0 rgba(0, 0, 0, 0.5);
    box-shadow: 3px 3px 3px 0 rgba(0, 0, 0, 0.5);
}

@media screen and (max-width: 500px) {
    .login {
        margin: 0;
        width: 100%;
        height: auto;
        top: 0;
        transform: translateY(0%);
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
    }
}

.login .login-header {
    position: relative;
    padding: 30px;
    text-align: center;
}

.login img {
    width: 60%;
}

.login .login-header:after {
    content: ' ';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #f27730;
    background: -moz-linear-gradient(left, #f27730 0%, #f27730 33.33%, #37ae83 33.33%, #37ae83 66.66%, #0D2F66 66.66%, #0D2F66 100%);
    background: -webkit-gradient(linear, left top, right top, color-stop(0%, #f27730), color-stop(33.33%, #f27730), color-stop(33.33%, #37ae83), color-stop(66.66%, #37ae83), color-stop(66.66%, #0D2F66), color-stop(100%, #0D2F66));
    background: -webkit-linear-gradient(left, #f27730 0%, #f27730 33.33%, #37ae83 33.33%, #37ae83 66.66%, #0D2F66 66.66%, #0D2F66 100%);
    background: -o-linear-gradient(left, #f27730 0%, #f27730 33.33%, #37ae83 33.33%, #37ae83 66.66%, #0D2F66 66.66%, #0D2F66 100%);
    background: -ms-linear-gradient(left, #f27730 0%, #f27730 33.33%, #37ae83 33.33%, #37ae83 66.66%, #0D2F66 66.66%, #0D2F66 100%);
    background: linear-gradient(to right, #f27730 0%, #f27730 33.33%, #37ae83 33.33%, #37ae83 66.66%, #0D2F66 66.66%, #0D2F66 100%);
}

.login .login-body {
    padding: 0 30px 20px 30px;
    display: inline-block;
}

.login .login-body .login-body-title {
    font-size: 16px;
    text-align: center;
    padding: 10px 0 0 0;
    margin-bottom: 5px;
}

.form {
    display: block;
}

.form .form-row {
    float: left;
    width: 100%;
    margin-bottom: 15px;
    margin-top: 10px;
}

.form .form-row .form-row-label {
    float: left;
    width: 100%;
    font-size: 12px;
    margin-bottom: 5px;
}

.form .form-row._error .form-row-label {
    color: #D0021B;
}

.form .form-row .form-row-input {
    float: left;
    width: 100%;
    height: 38px;
    border: 1px solid #ccc;
    position: relative;
}

.form .form-row._error .form-row-input {
    border-color: #D0021B;
}

.form .form-row .form-row-input i {
    float: left;
    width: 35px;
    text-align: center;
    padding-top: 10px;
    color: #ccc;
    font-size: 18px;
    margin-right: 5px;
}

.form .form-row .form-row-input input {
    float: left;
    width: calc(100% - 40px);
    height: 36px;
    font-family: 'Open Sans', sans-serif;
    border: none;
    background: none;
    font-size: 1.2em;
}

.form .form-row .form-row-input input:focus {
    border: none;
    outline: none;
}

.form .form-row button {
    position: relative;
    float: right;
    width: auto;
    height: 40px;
    border: none;
    background: none;
    min-width: 150px;
    text-align: center;
    color: #fff;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}

.form .form-row button:before {
    background: #37ae83;
    position: absolute;
    content: '';
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.form .form-row button:after {
    width: 0%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.1);
    content: '';
    position: absolute;
    z-index: -1;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}

.form .form-row button:hover:after {
    width: 100%;
}

.form .form-row .form-row-btn ._cta {
    display: block;
}

.form .form-row .form-row-btn ._spinner {
    font-size: 22px;
    display: none;
}

.form .form-row .form-row-btn._loading ._spinner {
    display: block;
}

.form .form-link {
    color: #333;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
}

.form .form-link i {
    color: #37ae83;
    font-size: 1.3em;
    float: left;
    margin-right: 5px;
}

.form .form-link span {
    float: left;
    margin-top: -1px;
}

.container ul, .container ol {
    padding-left: 20px;
}

footer {
    position: absolute;
    bottom: 0;
    width: 100%;
}

footer ul {
    margin: 0;
    padding: 0;
    float: right;
    margin-bottom: 20px;
}

footer ul li {
    float: left;
    width: auto;
    margin-right: 20px;
    list-style: none;
    color: #fff;
    font-size: 12px;
}

footer ul li a {
    color: #fff;
    text-decoration: none;
}

@media screen and (max-width: 500px) {
    footer ul {
        float: left;
        width: 100%;
    }

    footer ul li {
        width: 100%;
        margin-top: 10px;
        text-align: center;
    }

    footer ul li:last-child {
        border-top: 1px solid #fff;
        padding-top: 15px;
    }

    footer ul li a {
        padding-left: 10px;
    }
}
