body {
    width: 100%;
    background-color: #d0d0ce;
}
.brand-wrapper {
    margin-top: -10%;
    margin-bottom: 19px;
}
.brand-wrapper .logo {
    margin-left: 50%;
    transform: translate(-50%, 0);
    width: 35%;
}
.login-card {
    border: 0;
    border-radius: 27.5px;
    box-shadow: 0 10px 30px 0 rgba(172, 168, 168, 0.43);
    overflow: hidden;
}
.login-card-img {
    border-radius: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    -o-object-fit: cover -10%;
    object-fit: cover;
    object-position: 35% 50%;
}
.login-card .card-body {
    padding: 85px 60px 60px;
}
@media (max-width: 422px) {
    .login-card .card-body {
        padding: 35px 24px;
    }
}

.login-card form {
    max-width: 326px;
}
.login-card .form-control {
    border: 1px solid #6f598f;
    padding: 15px 25px;
    margin-bottom: 20px;
    min-height: 45px;
    font-size: 13px;
    line-height: 15;
    font-weight: normal;
}

.login-card .form-control:focus {
    width: 130%;
    transform: translate(-13%, 0);
}
.login-card .form-control::-webkit-input-placeholder {
    color: #919aa3;
}
.login-card .form-control::-moz-placeholder {
    color: #919aa3;
}
.login-card .form-control:-ms-input-placeholder {
    color: #919aa3;
}
.login-card .form-control::-ms-input-placeholder {
    color: #919aa3;
}
.login-card .form-control::placeholder {
    color: #919aa3;
}
.login-card .login-btn {
    padding: 13px 20px 12px;
    background-color: #ED5565;
    border-radius: 4px;
    font-size: 17px;
    font-weight: bold;
    line-height: 20px;
    color: #fff;
    margin-bottom: 24px;
}
.login-card .login-btn:hover {
    border: 1px solid #ED5565;
    background-color: transparent;
    color: #ED5565;
}
.login-card .forgot-password-link {
    font-size: 14px;
    color: #919aa3;
    margin-bottom: 12px;
}
.login-card-footer-nav a {
    font-size: 14px;
    color: #919aa3;
}
.alrady-loged {
    background-color: rgb(127, 218, 127);
    border-radius: 5px;
    padding: 5%;
}


/*****************  ADMIN PANEL title **********************/
.login-card-description {
    letter-spacing: 3px;
    font-size: 24px;
    color: #6f598f;
}
.login_content {
    position: relative;
    text-align: center;
    text-shadow: 4px 5px 4px #6f598f98;
    min-width: 280px;
    margin-bottom: -25px;
}
  
.login_content a,
.login_content .btn-default:hover {
    text-decoration: none; }
  
.login_content a:hover {
    text-decoration: underline; }
  
.login_content h1 {
    font: normal 25px Helvetica, Arial, sans-serif;
    line-height: 20px;
    margin: 10px 0 30px; }
  
.login_content h1:before, .login_content h1:after {
    content: "";
    height: 1px;
    position: absolute;
    top: 10px;
    width: 27%; }
  
.login_content h1:after {
    background: #6f598f;
    background: -webkit-gradient(linear, left top, right top, from(#6f598f), to(white));
    background: linear-gradient(to right, #6f598f 0%, white 100%);
    right: 0;
}
  
.login_content h1:before {
    background: #6f598f;
    background: -webkit-gradient(linear, right top, left top, from(#6f598f), to(white));
    background: linear-gradient(to left, #6f598f 0%, white 100%);
    left: 0;
}
  
.login_content h1:before, .login_content h1:after {
    content: "";
    height: 1px;
    position: absolute;
    top: 10px;
    width: 20%;
}
  
.login_content h1:after {
    background: #6f598f;
    background: -webkit-gradient(linear, left top, right top, from(#6f598f), to(white));
    background: linear-gradient(to right, #6f598f 0%, white 100%);
    right: 0;
}
  
.login_content h1:before {
    background: #6f598f;
    background: -webkit-gradient(linear, right top, left top, from(#6f598f), to(white));
    background: linear-gradient(to left, #6f598f 0%, white 100%);
    left: 0;
}

.checkbox {
    display: inline-flex;
    cursor: pointer;
    position: relative;
}

.checkbox > span {
    color: #34495E;
    padding-left: 0.5rem;
}

.checkbox > input {
    height: 20px;
    width: 20px;
    -webkit-appearance: none;
    -moz-appearance: none;
    -o-appearance: none;
    appearance: none;
    border: 1px solid #000000;
    border-radius: 4px;
    outline: none;
    transition-duration: 0.3s;
    background-color: #fff;
    cursor: pointer;
  }

.checkbox > input:checked {
    border: 1px solid #fff;
    background-color: #ed5564bb;
}

.checkbox > input:checked + span::before {
    content: '\2713';
    display: block;
    text-align: center;
    color: #fff;
    position: absolute;
    left: 0.4rem;
    top: -0.1rem;
}

.checkbox > input:active {
    border: 2px solid #34495E;
}