html {
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}
body {
    font-family: 'Roboto', sans-serif;
    background-color: transparent !important;
}

.login-box {
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    margin: 0 auto;
    padding: 20px 0;
    background: #FFF;
    text-align: center;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.9), 0 3px 6px rgba(0, 0, 0, 0.9);
    max-width: 640px;
    width: auto;
    -webkit-transition: width 10s, height 5s;
    -moz-transition: width 10s, height 5s;
    -ms-transition: width 10s, height 5s;
    transition: width 10s, height 5s;

}
.login-box.unlocked {
    width: 640px;
    padding-bottom: 10px;
    -webkit-transition: width 10s, height 5s;
    -moz-transition: width 10s, height 5s;
    -ms-transition: width 10s, height 5s;
    transition: width 10s, height 5s;
}

.login-title {
    margin: 0 auto;
}
.login-title>span {
    display: none;
}
.login-title>img {
    width: 130px;
}

.login-form {
    text-align: left;
    margin: 0 20px;
}
.login-form>form>.row:first-child {
    margin-left: 20px;
}

input[type=text], input[type=email] {
    background-color: #fff;
    border: none;
    border-bottom: 2px solid #444;
    border-top: 0px;
    border-radius: 0px;
    font-weight: 300;
    outline: 0;
    padding-left: 0px;
    color: #444;
    line-height: 2;
}

input[type=password] {
    background-color: #fff;
    border: none;
    border-bottom: 2px solid #444;
    border-top: 0px;
    border-radius: 0px;
    font-weight: 300;
    outline: 0;
    padding-left: 0px;
    color: #444;
    line-height: 2;
}

.form-group {
    margin-bottom: 0px;
    outline: 0px;
}

.form-control:focus {
    border-color: inherit;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-bottom: 2px solid #444;
    outline: 0;
    background-color: #F3F3F3;
    color: #444;
}

input:focus {
    outline: none;
    box-shadow: 0 0 0;
}

label {
    margin-bottom: 0px;
}

.form-control-label {
    font-size: 10px;
    color: #6C6C6C;
    font-weight: bold;
    letter-spacing: 1px;
}

.btn-outline-primary {
    border-color: #000;
    color: #000;
    border-radius: 0px;
    font-weight: bold;
    letter-spacing: 1px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}

.btn-outline-primary:hover, .btn-outline-primary:not(:disabled):not(.disabled).active, .btn-outline-primary:not(:disabled):not(.disabled):active, .show>.btn-outline-primary.dropdown-toggle {
    background-color: #000;
    border-color: #000;
    color: #FFF;
    right: 0px;
}
.btn-outline-primary.focus, .btn-outline-primary:focus {
    box-shadow: 0 0 0 0.2rem rgba(0,0,0,.5);
}

.login-btm {
    /*float: left;*/
}

.login-button {
    padding-left: 0px;
    padding-right: 0px;
    text-align: right;
    margin-bottom: 25px;
    margin-right: 20px;
}

.login-text {
    text-align: center;
    padding-left: 0px;
    color: #A2A4A4;
}

.loginbttm {
    padding: 20px 0 0;
}

.error-message {
    color: red;
}
form>.row {
    margin: 0 auto;
}

/**
* RESET PASSWORD PAGE
*/
.login-box.reset-password {
    padding-top: 10px;
}
.login-box.reset-password .login-form>form>.row:first-child {
    margin-top: 10px;
    margin-left: 0;
}
.login-box.reset-password .loginbttm {
    padding-top: 10px;
}
.login-box.reset-password .loginbttm .login-btm.login-button {
    margin-right: 0;
}

@media screen and (max-width:767px) {
    .login-form {
        margin-right: 20px;
    }
    .login-button {
        text-align: initial;
    }
    .login-btm {
        display: inline-block;
    }
}

@keyframes createBox {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}


/* login page -> custom open login-box*/
body {
    display:flex;
    flex-direction:row;
    justify-content: right;
}
.login-box  {
    overflow:hidden;
    transition:flex 0.3s ease-out;
    width:80px;
    flex:1;
    margin: auto;
}
.login-box.opened {
    width: 640px;
    flex: 0;
}
.busniess{
	margin-right: 12px;

}
@media (max-width: 576px) {
  .login-box.opened,busniess{
    width: 93%;
    margin-top: 20px;
  }
}

@media (min-width: 577px) and (max-width: 768px) {
  .login-box.opened,busniess{
    width: 53%;
  }
}

@media (min-width: 769px) and (max-width: 992px) {
  .login-box.opened,busniess{
    width: 73%;
  }
}

@media (min-width: 993px) {
  .login-box.opened,busniess  {
    width: 652px;
    flex: 0;
  }
}

.row.error-container {
    align-self: flex-end;
    margin-top: 20px;
    margin-right: 10px;
    margin-left: auto;
}
.row.error-container .callout.callout-danger {
    min-width: 300px;
    width: 15%;
}
