* {
  font-family: "Roboto", sans-serif;
  line-height: normal;
}

body,
html {
  font-family: "Arial";
  font-size: 14px !important;
  padding: 0;
  margin: 0;
  height: 100vh;
}

.login-container {
  width: 350px;
  margin: auto;
}

.login-main-cont {
  display: flex;
  overflow: hidden;
  background: #2c2c2e;
  border-radius: 15px;
  justify-content: center;
  transition: all 0.3s ease;
  width: 350px;
  padding: 24px;
  margin: auto;
  margin-top: 100px;
}

label {
  color: #ffffff;
  font-size: 17px;
}

.inputText {
  width: 300px;
  height: 30px;
  border: none;
  border-radius: 3px;
  padding-left: 8px;
  margin: 5px 0;
}

.sign-in-btn {
  width: 75px;
  height: 35px;
  border: none;
  border-radius: 10px;
  padding-left: 7px;
  color: #ffffff;
  background: #8aa31b;
  font-weight: bold;
  cursor: pointer;
  margin-right: 10px;
}

.inline-block {
  display: inline-block;
  box-sizing: border-box;
}

.otp-container {
  display: none;
  color: #ffffff;
  position: relative;
}

.ap-otp-inputs {
  width: 100%;
  text-align: center;
  height: 70px;
}

.ap-otp-input {
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-radius: 4px;
  padding: 5px 0;
  width: 1.3em;
  height: 50px;
  margin: 0 2px;
  text-align: center;
  font-size: 2rem;
  flex: 1 1 0%;
  background-color: #3b3b3b;
  color: #ffffff;
}

.ap-otp-input:focus {
  outline: none !important;
  border: 2px solid #ffffff;
}

/* ------------ COMMONS ------------ */

input[type="text"],
input[type="tel"],
input[type="email"],
textarea {
  background-color: #3b3b3b;
  color: white;
}

span {
  color: white;
  font-size: 17px;
}

.center {
  text-align: center;
}

.relative {
  position: relative;
}

.absolute-center {
  position: absolute;
  z-index: 999;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.align-center {
  display: flex;
  align-items: center;
}

.label-above {
  display: block;
  margin: 10px 0 5px 0;
  font-weight: bold;
}

.single-section {
  display: block;
  margin: 20px 0;
  padding: 10px 15px;
  z-index: 0;
}

.single-row {
  display: flex;
  align-items: center;
  margin: 10px 0;
  width: 100%;
}

.loader {
  border: 10px solid #f3f3f3; /* Light grey */
  border-top: 10px solid grey; /* Blue */
  border-radius: 50%;
  animation: spin 2s linear infinite;
  display: none;
}

.small-loader {
  width: 10px;
  height: 10px;
}

.large-loader {
  width: 60px;
  height: 60px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

#toast {
  visibility: hidden;
  max-width: 350px;
  height: 40px;
  /*margin-left: -125px;*/
  margin: auto;
  background-color: #333;
  color: #fff;
  text-align: center;
  border-radius: 2px;
  position: fixed;
  z-index: 1;
  left: 0;
  right: 0;
  top: 30px;
  font-size: 15px;
  white-space: nowrap;
}

#toast #img {
  width: 50px;
  height: 50px;
  float: left;
  padding-top: 16px;
  padding-bottom: 16px;
  box-sizing: border-box;
  background-color: #111;
  color: #fff;
}

#toast #desc {
  color: #fff;
  padding: 12px;
  overflow: hidden;
  white-space: nowrap;
}

#toast.show {
  visibility: visible;
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  animation: fadein 0.5s, fadeout 0.5s 4.6s;
}

@-webkit-keyframes fadein {
  from {
    top: 0;
    opacity: 0;
  }
  to {
    top: 30px;
    opacity: 1;
  }
}

@keyframes fadein {
  from {
    top: 0;
    opacity: 0;
  }
  to {
    top: 30px;
    opacity: 1;
  }
}

@-webkit-keyframes fadeout {
  from {
    top: 30px;
    opacity: 1;
  }
  to {
    top: 60px;
    opacity: 0;
  }
}

@keyframes fadeout {
  from {
    top: 30px;
    opacity: 1;
  }
  to {
    top: 60px;
    opacity: 0;
  }
}

/* ------------  ------------ */
