@font-face {
    font-family: Neutra Text;
    font-weight: bold;
    src: url("font/Neutra-Text-Font.html") format("opentype");
  }
  
  *{
    margin: 0;padding: 0;
    box-sizing: border-box;
  }

  body{
  font-family: 'Neutra Text';
}
.wrapper{
  background: url('../Images/Background.png');
  background-repeat: no-repeat;
    background-size: 100% 100%;
    height: 100vh;
    position: relative;
}

.login-container{
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bg-white{
    background: #ffffff;
    background-size: contain;
}

.bg-black{
    background: #000000;
    background-size: cover;
}

.h100vh{
    height: 100vh;
}

.h80vh{
  height: 80vh;
}

.blak-box{
    display: flex;
    justify-content: center;
    align-items: center;
}

.bg-white::after{
    content: " ";
    position: absolute;  
    width: 30px;
    height: 150px;
    left: 0px;
    top: 0px;
    color: #ea3438;
}

.box-shadow {
  padding: 20px;
  box-shadow:
       inset 0 -3em 3em rgba(0,0,0,0.1),
             0 0  0 2px rgb(255,255,255),
             0.3em 0.3em 1em rgba(0,0,0,0.3);
}

.logo-img {
    width: 15rem;
   /* vertical-align: middle;
    width: 80%;*/
    /* width:80%;
    align-content:center;*/
}

.hading-label h2{
    font-size: 3rem;
    font-weight: bold;
    color: #ea3438;
}

.hading-label p{
    font-size: 1.2rem;
}

.content-whtebg{
  display: flex;
  justify-content: center;
  align-items: center;
}

.form-hading-label h2{
    color: #ffffff;
}

.form-hading-label p{
    color: #ffffff;
}
.form-content p{
    color: #ffffff;
}

.p-50{
    padding: 10px;
}

.form-control {
  min-height: auto;
  padding-top: 4px;
  padding-bottom: 3.28px;
  transition: all .1s linear
}

.form-control:focus {
  box-shadow: none;
  transition: all .1s linear;
  border-color: #1266f1;
  box-shadow: inset 0 0 0 1px #1266f1
}

.form-control.form-control-sm {
  font-size: .775rem;
  line-height: 1.5
}

.form-control.form-control-lg {
  line-height: 2.15;
  border-radius: .25rem
}

.form-outline {
  position: relative
}

.form-outline .form-helper {
  width: 100%;
  position: absolute;
  font-size: .875em;
  color: #757575
}

.form-outline .form-helper .form-counter {
  text-align: right
}

.form-outline .trailing {
  position: absolute;
  right: 10px;
  left: auto;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none
}

.form-outline .form-icon-trailing {
  padding-right: 2rem !important
}

.form-outline .form-control {
  min-height: auto;
  padding: .33em .75em;
  border: 1px solid #757575;
  transition: all .2s linear
}
.form-outline .form-control~.form-label {
  position: absolute;
  top: 0;
  max-width: 90%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  left: .75rem;
  padding-top: .37rem;
  pointer-events: none;
  transform-origin: 0 0;
  transition: all .2s ease-out;
  color: rgba(112, 111, 111, 0.6);
  margin-bottom: 0
}

.btn{    
    /* background-image: linear-gradient(to right, #ffcd29 , #ee7f22); */
    background-color: #ffcd29;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 50px;
    padding: 5px 50px;
}

.foot-link a{
    color: #000000;
    text-decoration: none;
}
.foot-link span{
    color: #000000;
    text-decoration: none;
}

.foot-link span .yellow{
    color: #fbeb24;
}

.form-content .form-control {
  border: none;
  background: none;
  border-bottom: 1px solid #ffc107;
  border-radius: 0px !important;
  color: #fff;
}

.form-content label{
  float: left;
}

.form-content .form-control:focus, .form-content .form-control:hover {
  border: none;
  margin: 0 auto;
  background: none;
  box-shadow: none;
  border-bottom: 1px solid rgb(0, 0, 0);
  color: rgb(0, 0, 0);
}

.form-control {
  display: block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

@media screen and (max-width: 480px){
    .login-container{
        display: block;}
}