/* Made with love by Mutiullah Samim*/

@import url('https://fonts.googleapis.com/css?family=Numans');

html,
body {
  background-image: url('https://dajanex.com/assets/dajanex-header-bg.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  min-height: 100vh;
  font-family: 'Numans', sans-serif;
  margin: 0;
  padding: 0;
}

.container {
  min-height: 100vh;
  align-content: center;
}

.card {
  width: 100%;
  max-width: 420px;
  margin-top: auto;
  margin-bottom: auto;
}

.card-header {
  background-color: #04133E !important;
  text-align: center;
}

.input-group-prepend span {
  width: 40px;
  /* background-color: #9ACC5B; */
  color: black;
  border: 0 !important;
}

input:focus {
  outline: 0 0 0 0 !important;
  box-shadow: 0 0 0 0 !important;

}

.remember {
  color: white;
}

.remember input {
  width: 20px;
  height: 20px;
  margin-left: 15px;
  margin-right: 5px;
}

.links {
  color: white;
}

.links a {
  margin-left: 4px;
}

/* Sign Up CSS */
.code-box {
  width: 40px;
  height: 40px;
  font-size: 20px;
  font-weight: bold;
  border-radius: 8px;
  margin: 0 2px;
  transition: transform 0.2s ease;
}

.code-box:focus {
  border-color: #007bff;
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
  transform: scale(1.05);
}

.code-box.invalid {
  border-color: #dc3545;
  box-shadow: 0 0 5px rgba(220, 53, 69, 0.5);
}

.shake {
  animation: shake 0.3s;
}

@keyframes shake {

  0%,
  100% {
    transform: translateX(0);
  }

  20%,
  60% {
    transform: translateX(-5px);
  }

  40%,
  80% {
    transform: translateX(5px);
  }
}

p.full-indented {
  margin-left: 1.5em;
}

.indented {
  text-indent: 1.5em;
}

.li-indented {
  margin-left: 1.5em;
}

.card-subtitle,
.card-title {
  font-weight: bold;
}

.bg-blue-dajanex {
  background-color: #04133E !important
}