.title {
  width: 100%;
  float: left;
  line-height: 46px;
  font-size: 34px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #bc562a;
  position: relative;
}

.input {
  width: 100%;
  margin-top: 50px;
  height: 40px!important;
  position: relative;
}

.input label {
  /* line-height: 24px;
  font-size: 18px; */
  color: #333;

  position: absolute;
  top: 0px;
  left: 0;
  z-index: 2;
  cursor: pointer;
}

input {
  border: none !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0.2 !important;
  font-size: 1rem !important;
  height: 32px !important;
  line-height: 24px !important;
}
/*textarea:focus, input:focus{*/
input:focus{
    outline: none;
}

.spin-box {
    width: 100%;
    background-color: #dee2e6;
    height: 2px;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: background-color 0.3s ease;
}

.input:focus-within .spin-box {
    background-color: #F85914;
}

.pass-forgot {
  width: 100%;
  float: left;
  text-align: right;
  color: #6c757d;
  font-size: 0.9rem;
  text-decoration: none!important;
  transition: color 0.2s ease;
}

.pass-forgot:hover {
  color: #F85914;
  text-decoration: underline!important;
}
.login-modal {
position: relative;
top: var(--loginTop);
left: calc(50% - 215px);
width: 430px;
max-width: 430px;
max-height: calc(100% - var(--loginTop));
background: #fff;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15), 0 4px 12px rgba(0, 0, 0, 0.1);
border-radius: 12px;
overflow: hidden;
}
.login-modal-close {
position: fixed;
top: 35px;
right: calc(50% - 255px);
cursor: pointer;
}
.login-modal-close svg {
fill: #fff;
width: 30px;
height: 30px;
padding: 5px;
border: 2px solid rgba(255, 255, 255, 0.7);
border-radius: 50%;
}
.logo-image {
  background: #ffffff;
  display: flex;
  justify-content: center;
  padding: 2rem 0;
  border-bottom: 1px solid #e0e0e0;
}
.login-form-box {
  text-align: center;
  padding: 2rem 2.5rem;
}
.radius-lg {
  border-radius: 0.5rem;
}
.rounded-xl {
  border-radius: 0.75rem;
}
.rounded-2xl {
  border-radius: 1rem;
}
.txt-clr-999 {
  color: #999;
}