BODY {
  font: 400 15px/20px "Open Sans", "Helvetica Neue", helvetica, arial, verdana,
    sans-serif;
  font-weight: 100;
  overflow: auto;
}
#spacer {
  height: 150px;
}
/* #companyLogo img {
  box-shadow: 0 8px 8px -4px grey;
  width: 200px;
} */
.footer {
  position: static;
  margin: auto;
  font-size: 10px;
  color: gray;
  padding-top:4rem;
}

.central {
  padding-top: 3rem;
}

@media (max-height: 700px) { 
  .central {
    padding-top: 0;
  }
}

#error {
  width: 100%;
  color: orange;
  font-weight: bold;
  font-size: 13px;
  overflow: hidden;
  word-wrap: break-word;
  padding-bottom: 4px;
  text-overflow: ellipsis;
}
#Msg{
  width: 300px;
  max-height: 60px;      
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
#loadLabel {
  margin-top: 10px;
  margin-bottom: 10px;
}
.textBox {
  width: 200px;
  font-size: 14px;
}
.caption {
  padding-top: 10px;
}

#main .h3 {
  padding-left: 20px;
}
#submit {
    padding-left: 7rem;
    padding-bottom: 1rem;
    padding-top: 1rem;
}
#loader {
    display: none;
  position: absolute;
  top: calc(50% - 45px);
  left: calc(50% - 45px);
  border: 12px solid #f3f3f3; 
  border-top: 12px solid #5c636a;
  border-radius: 50%;
  width: 90px;
  height: 90px;
  animation: spin 1.5s linear infinite;
  z-index: 99999;
}
#cover {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  z-index: 99998;
  pointer-events: none;
  overflow-x: auto;
  background-color: rgba(0, 0, 0, 0.4);
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* .frame {
    border: 1px solid #aeaeae;
    width: 275px;
    border-radius: 3%;
} */
.head h1 {
  text-align:center;
  text-transform:uppercase;
  font-size:26px; letter-spacing:1px;
  font-size: 14px;
  font-weight: bold;
  color: grey; 
  width: 13.8rem;
   border-bottom: 2px solid rgba(0, 0, 0, 0.382); 
   line-height: 0.01em;
   margin: 10px 0 20px; 
}

.head h1 span {
    background:#fff; 
    padding:0 10px; 
}

.head {
  display: flex;
  justify-content: center;
}


#tdis{
  font-weight: bold;
  color: rgb(68, 68, 68);
}

.floating-label-content {
  position: relative;
  margin-bottom: 20px;
}
.floating-label {
  color: #323840;
  font-size: 13px;
  font-weight: normal;
  position: absolute;
  pointer-events: none;
  left: 15px;
  top: 0px;
  padding: 0 5px;
  background: #fff;
  transition: 0.2s ease all;
  -moz-transition: 0.2s ease all;
  -webkit-transition: 0.2s ease all;
}
.floating-input {
  font-size: 12px;
  display: block;
  width: 200px;
  height: 45px;   
  padding: 0 15px;
  background: #fff;
  color: #323840;
  border: 1px solid #323840;
  border-radius: 4px;
  box-sizing: border-box;
}
.floating-input:-webkit-autofill {
  -webkit-box-shadow:200px 200px 100px white inset; 
  box-shadow:200px 200px 100px white inset;
}
.floating-input:focus {
  outline: blue;
}
.floating-input:focus ~ .floating-label {
  top: -8px;
  font-size: 13px;
}
.floating-input:not(:placeholder-shown) ~ .floating-label {
  top: -10px;
  font-size: 13px;
}