#root, body, html {
  height: 100%;
}
*, :after, :before {
  box-sizing: border-box;
}
body {
    font-size: 14px;
    background: url(../../assets/image/login-bg.jpg) center no-repeat #000;
    background-size: cover;
    font-family: 'Inter', sans-serif;
}
.d-block {
  display: block !important;
}
img {
  max-width: 100%;
}

.logo {
  margin-bottom: 20px;
  text-align: center;
}

.logo img {
  height: 50px;
}

.login-box {
  width: 450px;
  margin: 0 auto;
  position: absolute;
  top: 50%;
  left: 50%;
  padding: 0;
  transform: translate(-50%, -50%);
  background: linear-gradient(45deg, #d5e8ff, #fcf6c4);
  border-radius: 25px;
  overflow: hidden;
  border: 4px solid #e33124;
}

.login-box-large {
  width: 700px;
  margin: 0 auto;
  position: absolute;
  top: 50%;
  left: 50%;
  padding: 0;
  transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 5px;
  overflow: hidden;
}

.login-body {
  padding: 25px;
  border-radius: 30px;
}

.lock-screen {
  width: 100%;
  background: url(../images/lock-screen-bg.jpg);
  height: 100vh;
  background-repeat: no-repeat;
  background-size: cover;
}

.lock-screen-box {
  width: 400px;
  margin: 0 auto;
  position: absolute;
  top: 50%;
  left: 50%;
  padding: 40px;
  transform: translate(-50%, -50%);
  background: #ffffff2e;
  border: 1px solid #ffffff91;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.42);
  border-radius: 10px;
  text-align: center;
}

.lock-screen-box label,
.lock-screen-box a {
  color: #fff;
}

.lock-screen-box .client-thumbs {
  border-radius: 50%;
  margin-bottom: 20px;
  border: 5px solid #fff;
}

.lock-screen-box .btn-primary,
.lock-screen-box .btn-primary:hover {
  color: #fff;
  background-color: #f28121;
  border-color: #f28121;
}

.lock-screen-box hr {
  background: #fff;
}

.text-yellow {
  color: #FFEB3B !important;
}

.relativeBox {
  position: relative;
}

.relativeBox input {
  padding-right: 50px;
}

.Ficon-r {
  position: absolute;
  right: 10px;
  top: 3px;
  font-size: 20px;
  cursor: pointer;
}
.stretch-card {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: stretch;
  align-items: stretch;
  -webkit-justify-content: stretch;
  justify-content: stretch;
}
.head {
  text-align: center;
  margin-bottom: 10px;
}
.head h4{
  background: #e33124;
  color: #fff;
  padding: 5px 15px;
  text-align: center;
  border-radius: 50px;
  display: inline-block;
  margin: 0;
  font-size: 14px;
}

.btn {
  line-height: 40px;
  padding: 0 10px; 
}

.btn-primary {
  color: #fff;
  background: linear-gradient(45deg, #051e66, #4d6cc7);
  border-color: #051e66;
}

.btn-primary:hover {
  color: #fff;
  background-color: #051e66;
  border-color: #051e66;
}

.input-wrapper {
  position: relative;
}

.inputIcon {
  position: absolute;
  left: 0;
  top: 0;
  background: #b11117;
  color: #fff;
  height: 40px;
  width: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50px;
}

.form-control {
  display: block;
  width: 100%;
  padding: 0 0.75rem;
  font-size: 1rem;
  height: 40px;
  font-weight: 400;
  line-height: 40px;
  color: #000;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 5px;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.form-control:focus {
  color: #000;
  background-color: #fff;
  border-color: #80bdff;
  outline: 0;
  box-shadow: none;
}

.form-group {
  margin-bottom: 15px;
}

.btn-danger {
  background: #b11117;
  border-color: #b11117;
  border-radius: 50px;
}

.form-group label {
  margin-bottom: 8px;
  display: block;
  font-weight: 600;
}
 

@media (max-width:767px) { 
  .login-warpper{
    padding: 20px;
  }
  .login-box,
  .login-box-large { 
    width: 100%; 
    margin: 0 auto;
    position: relative;
    top: auto;
    left: auto; 
    transform: none; 
    overflow: auto;
  }
}