.login-box.card {
    height: 500px;
  }
  .login-register {
    padding: 8%;
}
.toggle-password {
  cursor: pointer;
  float: right;
  top: -20px;
  position: relative;
  right: 5px;
}
  select {
    /* Reset Select */
    appearance: none;
    outline: 0;
    border: 1px solid #20aee3;
    box-shadow: none;
    /* Personalize */
    flex: 1;
    padding: 0 1em;
    color: black;
    background-color: var(--darkgray);
    background-image: none;
    cursor: pointer;
  }
  /* Remove IE arrow */
  select::-ms-expand {
    display: none;
  }
  /* Custom Select wrapper */
  .select {
    position: relative;
    display: flex;
    width: 100%;
    height: 30px;
    border-radius: .25em;
    overflow: hidden;
  }
  /* Arrow */
  .select::after {
    content: '\25BC';
    position: absolute;
    top: 0;
    right: 0;
    padding: 5px;
    background-color: #34495e;
    transition: .25s all ease;
    pointer-events: none;
  }
  /* Transition */
  .select:hover::after {
    color: #ffff;
  }

  select {
    border-radius: 50px;
  }
  .select::after {
    border-radius: 0 50px 50px 0;
  }

.go-back a:hover {
  color: #0f6674 !important;
}

.go-back a {
  color: #fa3b31 !important;
  font-weight: 400;
}
@media (min-width: 768px) {
  .d-res {
    display: flex !important;
  }
}
@media (max-width: 1023px) {
  .d-res {
    display: flex !important;
  }
}
@media (max-width: 450px) {
  .d-res {
    display: block !important;
  }
  .d-res .checkbox {
    margin-bottom: 10px !important;
  }
}