#popup_login {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.8);
  z-index: 999;
}

.popup {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 8px;
  border: 4px solid #11387F;
  background: #fff;
  box-shadow: 10px 20px 10px 0px rgba(0, 0, 0, 0.15);
  padding: 15px 30px 30px;
  display: flex;
  width: 92%;
  max-width: 450px;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}


.popup .close_btn{
position: absolute;
top: 10px;
right: 10px;
background: none;
padding: 5px;

}

.popup span {
  color: #0d2155;
  font-size: 18px;
  font-weight: 700;
  line-height: 120%; /* 19.2px */
  letter-spacing: -0.48px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

/* .popup p {
  font-size: 15px;
  font-weight: 500;
  line-height: 120%; 
  letter-spacing: -0.45px;
  margin-top: 0;
  margin-bottom: 10px;
  text-align: center;
  color: #ed3921;
} */

.popup label {
  color: #666;
  font-size: 14px;
  font-weight: 500;
  line-height: 110%; /* 15.4px */
  letter-spacing: -0.56px;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.popup label input {
  width: 100%;
  padding: 10px 16px;
  border-radius: 6px;
  height: 42px;
  border: 1px solid #c7c7c7;
}

.popup .confirm_btn {
  display: flex;
  width: 100%;
  height: 42px;
  padding: 9px 20px;
  justify-content: center;
  align-items: center;
  gap: 9px;
  border-radius: 6px;
  background: #11387F;

  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 125%; /* 20px */
  letter-spacing: -0.64px;
}
