@charset "utf-8";

.signin-wrap {
    background: #00131A url(../images/bg.jpg) center center no-repeat;
    background-size: cover;
    position: relative;
}
.signin-wrap::before {
    content: '';
    display: block;
    width: 100%;
    height: 3px;
    position: absolute;
    top: 0;
    background: rgb(11,149,175);
    background: -moz-linear-gradient(90deg, rgba(11,149,175,.2) 0%, rgba(46,193,179,1) 100%);
    background: -webkit-linear-gradient(90deg, rgba(11,149,175,.2) 0%, rgba(46,193,179,1) 100%);
    background: linear-gradient(90deg, rgba(11,149,175,.2) 0%, rgba(46,193,179,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0b95af",endColorstr="#2ec1b3",GradientType=1);
}
.signin-wrap::after {
    content: '';
    display: block;
    width: 100%;
    height: 3px;
    position: absolute;
    bottom: 0;
    background: rgba(46,193,179,1) ;
    background: -moz-linear-gradient(90deg, rgba(46,193,179,1)  0%, rgba(11,149,175,.2) 100%);
    background: -webkit-linear-gradient(90deg, rgba(46,193,179,1) 0%, rgba(11,149,175,.2) 100%);
    background: linear-gradient(90deg, rgba(46,193,179,1) 0%, rgba(11,149,175,.2) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#2ec1b3",endColorstr="#0b95af",GradientType=1);
}

.signin-form {
    background: transparent;
    color: #ffffff;
    padding-bottom: 0;
    padding-top: 0;
    box-shadow: none;
}

.signin-header .img_logo {
    width: 90%;
    margin: 0 auto 0.5rem;
}
.signin-body {
    margin-bottom: 1.5rem;
}
.signin-body .form-group label {
    margin-bottom: 0.2rem;
    line-height: 1.2;
    color: #56dfd4;
    font-size: .9375rem;
    letter-spacing: 0.5px;
}
.signin-body .form-group:last-child {
    margin-bottom: 0; 
}
.text-danger {
    color: #ed6b78!important;
}
.btn-signin {
    background: rgb(11,149,175);
    background: -moz-linear-gradient(90deg, rgba(11,149,175,1) 0%, rgba(46,193,179,1) 100%);
    background: -webkit-linear-gradient(90deg, rgba(11,149,175,1) 0%, rgba(46,193,179,1) 100%);
    background: linear-gradient(90deg, rgba(11,149,175,1) 0%, rgba(46,193,179,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0b95af",endColorstr="#2ec1b3",GradientType=1);
    border: 0;
    font-size: 1.125rem;
    letter-spacing: 2px;

}
.btn-signin:hover {
    background: rgb(21,170,198);
    background: -moz-linear-gradient(90deg, rgba(21,170,198,1) 0%, rgba(96,224,212,1) 100%);
    background: -webkit-linear-gradient(90deg, rgba(21,170,198,1) 0%, rgba(96,224,212,1) 100%);
    background: linear-gradient(90deg, rgba(21,170,198,1) 0%, rgba(96,224,212,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#15aac6",endColorstr="#60e0d4",GradientType=1); 
}
.btn-signin:focus {
    box-shadow: 0 0 0 0.2rem rgba(10 ,150, 175,.55);
}
.signin-footer {
    padding-bottom: 0;
}
.signin-body .form-control {
    padding: 0.5rem 1.2rem;
    height: auto;
    margin-bottom: 3px;
    border: 2px solid transparent;
}
.signin-body .form-control:focus {
    color: #16242F;
    background-color: #fff;
    border-color: #2c99b0;
    outline: 0;
    box-shadow: none;
}
