.vv_getting_started_wrapper {
  margin-top: 0.75rem;
  display: flex;
  justify-content: space-between;
}

.vv_hr {
  width: 1px;
  background-color: #666666;
}

.vv_getting_started_left,
.vv_getting_started_right {
  width: 48%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.vv_getting_started_warning {
  margin: 0.8rem 0;
  padding: 0.5rem 0.3rem;
  border: 2px solid #f87474;
  background-color: #ffcb42;
  color: #00337c;
  border-radius: 0.3rem;
  font-size: 0.875rem;
  font-weight: var(--MEDIUM);
}

.vv_acct_switch .form-check-input {
  margin-right: 1.3rem !important;
  transform: scale(1.5);
}

.vv_getting_started_activated_msg {
  padding: 0.5rem;
  border: 2px solid #239662;
  background-color: #2aaf74;
  font-weight: var(--BOLD);
  font-size: var(--P-MEDIUM);
  color: #ffffff;
  transition: all 0.3s ease;
}

.vv_getting_started_deactivated_msg {
  padding: 0.5rem;
  border: 2px solid #ff5555;
  background-color: #f87474;
  font-weight: var(--BOLD);
  font-size: var(--P-MEDIUM);
  color: #777777;
  transition: all 0.3s ease;
}

.jwtForm {
  width: 100%;
}

.vv_getting_started_question_wrapper {
  width: 80%;
  margin: 0.3rem auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.vv_getting_started_question_left {
  width: 75%;
  font-size: var(--P-REGULAR);
  font-weight: var(--REGULAR);
}

.vv_getting_started_question_right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 25%;
}

.vv_getting_started_question_right button {
  width: 100%;
  border: none;
  outline: none;
  border-radius: 0.3rem;
  background-color: #2aaf74;
  font-size: var(--P-MEDIUM);
  font-weight: var(--MEDIUM);
  transition: all 0.3s ease;
}

.vv_getting_started_question_right button:hover {
  background-color: #239662;
}

.vv_getting_started_question_right_no button {
  width: 100%;
  border: none;
  outline: none;
  border-radius: 0.3rem;
  background-color: #f87474;
  font-size: var(--P-MEDIUM);
  font-weight: var(--MEDIUM);
  transition: all 0.3s ease;
}

.vv_getting_started_question_right_no button:hover {
  background-color: #ff5555;
}

.vv_input_wrapper {
  width: 80%;
  background-color: #ffffff !important;
  margin: 0.8rem auto;
  padding: 0 0.3rem;
  border-radius: 0.3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.vv_btn_wrapper {
  width: 80%;
  height: 3rem;
  margin: 0.8rem auto;
}

.vv_input_wrapper input {
  border: none !important;
  outline: none !important;
  width: 90%;
  height: 100%;
  font-size: 0.875rem;
  font-weight: 500;
  color: #666666;
}

.vv_input_wrapper input:hover,
.vv_input_wrapper input:focus {
  outline: none;
}

.vv_btn_wrapper_submit_button {
  width: 10rem;
  height: 100%;
  border-radius: 0.3rem;
  border: none;
  outline: none;
  color: #f1f1f1;
  font-size: var(--P-REGULAR);
  font-weight: var(--MEDIUM);
  background-color: #2aaf74 !important;
  transition: all 0.3s ease;
}

.vv_btn_wrapper_submit_button:hover,
.vv_btn_wrapper_submit_button:active {
  background-color: #239662 !important;
}

.vv_btn_wrapper_submit_button_disabled {
  width: 10rem;
  height: 100%;
  border-radius: 0.3rem;
  border: none;
  outline: none;
  color: #f1f1f1;
  font-size: var(--P-REGULAR);
  font-weight: var(--MEDIUM);
  background-color: #2aaf74 !important;
  transition: all 0.3s ease;
  opacity: 0.7 !important;
  cursor: not-allowed !important;
}

.vv_jwtMessage {
  width: 100%;
}

.isTokenGenerationSuccess,
.isTokenGenerationError {
  width: 80%;
  margin: 0.5rem auto;
  padding: 0.5rem 0.3rem;
  border-radius: 0.3rem;
}

.isTokenGenerationSuccess {
  border: 2px solid #239662;
  background-color: #8dc4ab;
}

.isTokenGenerationError {
  border: 2px solid #ff5555;
  background-color: #ffb3b3;
}

.isTokenGenerationSuccess > p,
.isTokenGenerationError > p {
  font-size: var(--P-MEDIUM) !important;
  font-weight: var(--MEDIUM);
}

.vv_jwtCopyToClipboard {
  width: 100%;
  margin: 1rem auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.vv_jwtCopyToClipboard input {
  border: none;
  outline: none;
  border-radius: 0.5rem;
  padding: 0.8rem 0.3rem !important;
  font-weight: var(--MILD) !important;
  font-size: var(--P-MEDIUM) !important;
  color: #444444;
}

.vv_jwtCopyToClipboard button {
  margin: 0.2rem 0;
  border: none;
  outline: none;
  width: 30%;
  border-radius: 0.3rem;
  border: none;
  outline: none;
  font-weight: var(--MEDIUM);
  font-size: var(--P-SMALL);
  background-color: #2aaf74;
  transition: all 0.3s ease;
}

.vv_jwtCopyToClipboard button:hover {
  background-color: #239662;
}

@media screen and (max-width: 768px) {
  .vv_getting_started_wrapper {
    /* display: flex; */
    flex-direction: column;
    /* justify-content: space-between; */
  }

  .vv_hr {
    display: none !important;
    /* width: 1px;
    background-color: #666666; */
  }

  .vv_getting_started_left,
  .vv_getting_started_right {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .vv_getting_started_right {
    margin-top: 1.5rem;
  }

  .vv_getting_started_left h3,
  .vv_getting_started_right h3 {
    font-size: var(--H6-BIG);
  }

  .vv_getting_started_warning {
    margin: 0;
    padding: 0.5rem 0.3rem;
    border: 2px solid #f87474;
    background-color: #ffcb42;
    color: #00337c;
    border-radius: 0.3rem;
    font-size: var(--P-MEDIUM);
    font-weight: var(--BOLD);
  }

  .vv_acct_switch {
    margin: 1rem 0;
  }

  .vv_acct_switch .form-check-input {
    margin-right: 1.3rem !important;
    transform: scale(1.5);
  }

  .jwtForm {
    width: 100%;
  }

  .vv_getting_started_question_wrapper {
    width: 100%;
    margin: 0.3rem auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .vv_getting_started_question_left {
    width: 100%;
    font-size: var(--P-MEDIUM);
    font-weight: var(--BOLD);
  }

  .vv_getting_started_question_right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 25%;
  }

  .vv_getting_started_question_right button {
    width: 100%;
    font-size: var(--P-SMALL);
    font-weight: var(--MEDIUM);
    transition: all 0.3s ease;
  }

  .vv_getting_started_question_right button:hover {
    background-color: #239662;
  }

  .vv_getting_started_question_right_no button {
    width: 100%;
    border: none;
    outline: none;
    border-radius: 0.3rem;
    background-color: #f87474;
    font-size: var(--P-MEDIUM);
    font-weight: var(--MEDIUM);
    transition: all 0.3s ease;
  }

  .vv_getting_started_question_right_no button:hover {
    background-color: #ff5555;
  }

  .vv_input_wrapper {
    width: 100%;
  }

  .vv_btn_wrapper {
    width: 100%;
    height: 3rem;
    margin: 0.8rem auto;
  }

  .vv_input_wrapper input {
    border: none !important;
    outline: none !important;
    width: 90%;
    height: 100%;
    font-size: var(--P-MEDIUM);
    font-weight: var(--BOLD);
    color: #666666;
  }

  .vv_input_wrapper input:hover,
  .vv_input_wrapper input:focus {
    outline: none;
  }

  .vv_btn_wrapper button {
    width: 7rem;
    height: 100%;
    font-size: var(--P-MEDIUM);
    font-weight: var(--BOLD);
  }

  .vv_btn_wrapper button:hover,
  .vv_btn_wrapper button:active {
    background-color: #239662;
  }

  .vv_jwtMessage {
    width: 100%;
  }

  .isTokenGenerationSuccess,
  .isTokenGenerationError {
    width: 100%;
  }

  .isTokenGenerationSuccess > p,
  .isTokenGenerationError > p {
    font-size: var(--P-MEDIUM) !important;
    font-weight: var(--BOLD);
  }

  .vv_jwtCopyToClipboard input {
    border: none;
    outline: none;
    border-radius: 0.5rem;
    padding: 0.8rem 0.3rem !important;
    font-weight: var(--MILD) !important;
    font-size: var(--P-MEDIUM) !important;
    color: #444444;
  }
}
