* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "poppins", sans-serif;
}
.wrapper {
    width: 100%;
    height: 100vh;
    background-image: url("../images/background_star.png");
    background-size: cover;
    background-position: center;
    color: white;
    padding: 20px;
    overflow: scroll;
}
.Form {
    width: 60%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: .5s ease;
    margin: 20px auto 0px auto;
}
.Form form {
  width: 75%;
}
.Form h1 {
    color: #fff;
    font-size: 2rem;
}
.Form p {
    color: white;
    font-size: 13px;
    font-weight: 500;
    margin: 25px 0;
}
.input-box {
    margin: 45px 0;
    height: 45px;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    position: relative;
}
.input-box i {
    position: absolute;
    left: 0px;
    transform: translateY(75%);
    color: #fff;
    font-size: 1.5rem;
    margin-top: -10px;
}
.input-box label {
    position: absolute;
    left: 0;
    transform: translateY(-56%);
    font-size: 15px;
    font-weight: 500;
}
.input-box input[type=text], .input-box input[type=password] {
    width: 90%;
    height: 100%;
    float: right;
    border: none;
    outline: none;
    font-size: 18px;
    color: #fff;
    background: none;
    text-decoration: none;
    letter-spacing: 0.1rem;
}
.input-box a {
    text-decoration: none;
    cursor: pointer;
}
.input-box span {
    position: absolute;
    right: 5px;
    transform: translate(40%, 90%);
    font-size: 1rem;
    margin-bottom: 5px;
    color: #fff;
}
.input-box-reset {
  margin: 25px 0;
  height: 45px;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  position: relative;
}
.input-box-reset i {
  position: absolute;
  left: 5px;
  transform: translateY(75%);
  color: #fff;
  font-size: 1.5rem;
  margin-top: -10px;
}
.input-box-reset input[type=radio] {
  width: 25px;
  height: 25px;
  font-size: 18px;
  color: #fff;
  background: none;
  text-decoration: none;
  position: relative;
}
.input-box-reset input[type=text] {
  width: 90%;
  height: 100%;
  float: right;
  border: none;
  outline: none;
  font-size: 18px;
  color: #fff;
  background: none;
  text-decoration: none;
  letter-spacing: 0.1rem;
}
.hide {
    visibility: hidden;
}
input::placeholder {
    font-size: 13px;
    color: white;
    opacity: 1;
}
input::-ms-input-placeholder {
    font-size: 13px;
    color: white;
    opacity: 1; /* Firefox */
}
.forgot-section {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-top: -20px;
    font-size: 0.85rem;
}
.forgot-section span a {
    text-decoration: none;
    color: #2185d0;
}
.forgot-section span a:hover {
    text-decoration: underline;
    color: #fff;
}
.forgot-section span input {
    margin-right: 5px;
}
.btn {
    width: 100%;
    height: 40px;
    margin-top: 20px;
    border-radius: 20px;
    border: none;
    background: linear-gradient(45deg ,#098dc1,60% ,#f417de);
    font-size: 1.5rem;
    font-weight: 500;
    color: #eee;
    position: relative;
    cursor: pointer;
    z-index: 1;
    overflow: hidden;
}
.btn::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 00%;
    background: linear-gradient(45deg ,#f417de,60% ,#098dc1);
    transition: .5s ease;
    z-index: -1;
}
.btn:hover:before {
    width: 100%;
}
.LoginBtn a {
    text-decoration: none;
    color: #2185d0;
    font-size: 14px;
    font-weight: bold;
    border: 2px dotted tan;
    padding: 5px 5px;
}
#toast {
    visibility: hidden;
    width: 100%;
    max-width: 450px;
    background: #f8ffff;
    border: 1px solid #bedfe6;
    border-left: 5px solid #2185d0;
    border-radius: 5px;
    padding: 15px;
    position: absolute;
    z-index: 1;
    left: 0;
    right: 0;
    bottom: 20px;
    margin-left: auto;
    margin-right: auto;
  }
  #toast.show {
    visibility: visible;
    -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
  }
  #toast.top {
    top: 20px;
    bottom: auto;
  }
  #toast.right {
    left: auto;
    right: 20px;
  }
  #toast.left {
    left: 20px;
    right: auto;
  }
  #toast.success {
    background: #fbfff8;
    border: 1px solid #bee6bf;
    border-left: 5px solid #38d021;
  }
  #toast.error {
    background: #fff8f8;
    border: 1px solid #e6bebe;
    border-left: 5px solid #d02121;
  }
  #toast.warning {
    background: #fffbf8;
    border: 1px solid #e6d0be;
    border-left: 5px solid #d06421;
  }
  @keyframes fadein {
    from {
      transform: translateY(20px);
      opacity: 0;
    }
  
    to {
      transform: translateY(0px);
      opacity: 1;
    }
  }
  
  @keyframes fadeout {
    from {
      transform: translateY(0px);
      opacity: 1;
    }
  
    to {
      transform: translateY(20px);
      opacity: 0;
    }
  }
  
@media screen and (max-width: 700px) {
  .wrapper {
    height: 105vh;
    width: 100%;
  }
  .Form {
    width: 95%;
  }
  .Form form {
  width: 100%;
  }
}