@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;400;500&display=swap');

@font-face {
  font-family: "Kalimati";
  src: url("/fonts/Kalimati.ttf") format("truetype");
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.col-md-4,
.col-md-8 {
  padding: 0px !important;

}
.invalid-feedback {
  display: block;
  color: red;
}

.login-page {
  background:url('../img/mountain.jpg') no-repeat center center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 100vh;
}

.main-container {
  max-width: 1000px;
  margin: auto;
}

.login-body,
.login-box-body {
  height: 500px;
  width: 100%;
  border-top-right-radius: 20px; 
  border-bottom-right-radius: 20px;
}

.login-box-body {
  background: #ffffff;
  position: relative;
  padding: 10px 20px 20px 20px;
}

.image-sec {
  display: flex;
  justify-content: left;
  margin: 0rem 0rem;
}

.image-sec img {
  margin-right: 3rem !important;
}

.header-content {
  margin-top: 15px;
}

.header-content h4,
.header-content h5,
.header-content h3,
.header-content p {
  color: red;
  margin: 7px 0px;
  padding-top: 0px;
}

.header-content h4,
.header-content h5,
.header-content h3
 {
  font-weight: 700;
  font-family: Kalimati !important;
  margin-bottom: 0px !important;

}

.login-header {
  margin-bottom: 2rem;
}

.login-header h3 {
  font-family: roboto !important;
  color: #262626;
  font-weight: 700;
}

.company-name,
.login-img {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: white;
}

.login-img {
  background:url("../img/login-1.png");
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  height: 100%;
  border-top-left-radius: 20px; 
  border-bottom-left-radius: 20px;
}

.btn {
  background-color: #262626;
  color: #ffffff !important;
  padding: 0.8rem 3rem !important;
  font-size: 15px;
  border-radius: 0%;
}

.wrap-input100 {
  position: relative;
  width: 100%;
  z-index: 1;
}

.input100 {
  font-size: 14px;
  line-height: 1;
  color: rgb(41, 41, 41);
  display: block;
  background: rgb(241, 236, 236);
  height: 35px;
  width: 100%;
  padding: 0 30px 0 53px;
  margin-bottom: 15px;
  border: 1px solid rgb(207, 207, 207);
  outline: none;
}


.input100:focus+.focus-input100 {
  -webkit-animation: anim-shadow 0.5s ease-in-out forwards;
  animation: anim-shadow 0.5s ease-in-out forwards;
}

@-webkit-keyframes anim-shadow {
  to {
    box-shadow: 0px 0px 80px 30px;
    opacity: 0;
    border: none;
  }
}

@keyframes anim-shadow {
  to {
    box-shadow: 0px 0px 80px 30px;
    opacity: 0;
    border: none;
  }
}

.symbol-input100 {
  font-size: 15px;
  color: #262626;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  position: absolute;
  border-radius: 10px;
  bottom: -20%;
  left: 0;
  width: 100%;
  height: 100%;
  padding-left: 10px;
  pointer-events: none;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.input100:focus+.focus-input100+.symbol-input100 {
  padding-left: 23px;
  border: none;
  text-decoration: none;
}

.input100 {
  height: 40px !important;
  margin-bottom: 20px !important;
}