/*login css*/
* {
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 0;
}

* {
    padding: 0;
}

a {
    text-decoration: none !important;
}

body {
    font-family: 'Lato', sans-serif;
    background-color: #8bc34a;
    background-image: url(../images/pattern.png);
}

.logo {
    text-align: center;
}

    .logo img {
        display: block;
        margin: 0 auto 12px auto;
        max-width: 100%;
    }

.login_form {
    background: #ffffff;
    padding: 6px;
    margin: 100px 50px;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, .2);
    border-radius: 3px;
}

.form_container {
    padding: 15px;
}

.inputname {
    font-size: 15px;
    color: #656565;
    font-weight: normal;
}

.inputfield {
    border: solid 1px #D4D4D4;
    background-color: rgba(255, 255, 255, .8);
    outline: none;
    color: #343434;
    font-size: 16px;
    min-height: 40px;
    border-radius: 2px;
    padding-right: 50px;
}

.icon_wrap {
    position: relative;
}

.icon {
    position: absolute;
    right: 0;
    top: 0;
    font-size: 25px;
    color: #afafaf;
    padding: 7px 15px;
}


.login {
    border-style: none;
    padding: 10px 0;
    font-size: 18px;
    outline: none;
    border-radius: 3px;
    background: #74a53c;
    color: #fff;
    transition: .2s;
    margin: 10px 0;
}

    .login .fa-sign-in {
        margin-right: 10px;
        font-size: 22px;
    }

    .login:hover {
        -webkit-box-shadow: 0 0 9px 0px #9A9999;
        -moz-box-shadow: 0 0 9px 0px #9A9999;
        -ms-box-shadow: 0 0 9px 0px #9A9999;
        -o-box-shadow: 0 0 9px 0px #9A9999;
        box-shadow: 0 0 9px 0px #9A9999;
    }

login:focus {
    background: linear-gradient(#058851, #00FB92);
}

label {
    padding: 0 !important;
}

.continueButton {
    background: #ff6c3a;
    margin-top: 20px;
}

.registrationContainer {
    background: #ffffff;
    padding: 25px;
    margin: 7% 0%;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, .2);
    border-radius: 3px;
}

.RegistrationText {
    border: solid 1px #D4D4D4;
    border-color: #C0C0C0;
    width: 100%;
    min-height: 35px;
    box-sizing: border-box;
    font-size: 14px;
    color: #656565;
    border-radius: 2px;
    outline: none;
    margin: 6px 0px;
    padding: 5px 10px;
    transition: 200ms;
}

    .RegistrationText:focus {
        border-color: #66afe9;
        -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);
        box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);
    }

.errorMSG {
    position: absolute;
    top: 6px;
    right: 15px;
    color: #f00;
    font-size: 12px;
}

.OTPText {
    text-align: center;
    width: 100%;
    display: block;
    text-transform: uppercase;
    font-weight: 700;
    color: #ff6c3a;
    margin: 0px auto 10px;
    font-size: 16px;
}
.topHead {
    background:#fff;
    padding:10px 0px;
}
.topHead img {
    max-width:170px;
}
.backToLogin {
    color: #ffffff !important;
    float: right;
    font-size: 16px;
    background: #ff6c3a;
    padding: 10px;
    border-radius:3px;
    transition:250ms;
}
    .backToLogin:hover {
        background: #84b945;
    }


@media (max-width:992px) {
    .login_form {
        margin: 10%;
    }
}

@media (max-width:768px) {
    .continueButton {
        margin-bottom: 0;
    }
}

@media (max-width:500px) {
    .login_form {
        margin: 10% 3%;
    }

    .logo img {
        max-width: 180px;
    }
}
