.modal-custom {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 30vw;
  background-color: #fff;
  box-shadow: -2px 0 10px rgba(0,0,0,0.3);
  transition: transform 0.3s ease-in-out;
  z-index: 1050;
}

.modal-custom.mobile {
  width: 90vw;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 15px rgba(0,0,0,0.5);
  border-radius: 12px;
}

@media (max-width: 768px) {
  .modal-custom {
    right: auto;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    width: 90vw;
    height: auto;
    border-radius: 12px;
  }
}

.modal-header {
  justify-content: center;
}
.lgn-input{
  border-radius: 35px;
  border-color: #cf9042 !important;
}
.lgn-btn{
    background-color: #cf9042;
    border-radius: 30px;
}

.lgn-btn:hover {
    background-color: #d38422;
    border-color: black !important;
    color: #fff;
}
.close_form{
  background-color: #d38422;
}