/* The Modal (background) */
.mymodal {
  display: none;
  position: fixed;
  z-index: 2002;
  top: .1%;
  width: 100vw;
  height: 100%;
  overflow: hidden;
  background-color: rgb(255, 255, 255);
  border-radius: 10px;
  transition: all .4s ease-in-out;
}
@media screen and (max-width:800px) {
  .mymodal{
    width: 70vw;
    left: 15%;
    margin: 0 auto;
  }
}
/* Modal Content/Box */
.modal-content-main {
  display: flex;
  justify-content: center;
  width: 50%;
  /* Could be more or less, depending on screen size */
}

/* The Close Button */
.close {
  color: rgb(134, 133, 133);
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

/* __________________________________________________________ */

.modal-content .container {
  background-color: rgb(223 223 223);
  border-radius: 15px;
  height: 550px;
  width: 350px;
  position: relative;
  overflow: hidden;
}

.signup {
  position: absolute;
  top: 47%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50%;
  z-index: 5;
}

.signup.slide-up {
  top: 5%;
  transform: translate(-50%, 0%);
}

.signup.slide-up .title {
  cursor: pointer;
  font-size: 16px;
}

.title {
  color: #000000;
  font-size: 28px;
  text-align: center;
}

.title span {
  display: none;
}

.signup.slide-up span {
  display: inline;
  margin-right: 5px;
  color: red;
}

.signup .holder {
  margin-top: 50px;
}
.holder .custom-checkbox .custom-control-label a{
  color: #000000;

}
.input {
  border: none;
  background: transparent;
  outline: none;
  height: 30px;
  padding: 25px;
  border: 2px solid #000;
  font-size: 14px;
  width: 100%;
  color: #000000;
  border-radius: 15px;
  margin: 5px;
}

.input::placeholder {
  color: #000000;
}

.submit {
  background-color: #d6e3ec;
  color: #000;
  border: none;
  border-radius: 15px;
  margin: 15px auto;
  padding: 15px 45px;
  width: 100%;
  font-weight: bold;
  cursor: pointer;
}
.signup .submit{
  color: #fff;
}
.login .submit {
  background-color: #000119;
}

.login {
  position: absolute;
  top: 15%;
  left: 0;
  right: 0;
  bottom: 0;
  padding-top: 10px;
  background-color: #d6e3ec;
  z-index: 5;
  transition: all 0.5s;
}
.login input{
  border: 2px solid #fff;
  color: #000;
}
.login input::placeholder{
  color: #000;
}
.center {
  top: calc(50% - 10%);
}

.login .holder {
  margin-top: 50px;
}

.login.slide-up {
  top: 90%;
}

.login.slide-up .center {
  top: 10%;
  transform: translate(-50%, 0%);
  padding-top: 20px;
}

.login.slide-up .title {
  font-size: 1em;
  margin: 0;
  padding: 0;
  cursor: pointer;
}

.login.slide-up span {
  color: #f5f5f5;
  display: inline;
  margin-right: 5px;
}
.back-bg{
  display: none;
  width: 100%;
  height: 100%;
  background-color: #000000;
  background-color: rgba(0, 0, 0, 0.7);
  opacity: 0.7;
  filter: alpha(opacity=50);
  position: fixed;
  top: 0;
  left: auto;
  z-index: 2000;
}