/* Fonts */

@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap");

* {
  font-family: "roboto";
  margin: 0;
  justify-content: center;
}

body {
  border-radius: 0.75rem;
  max-height: 100% !important;
  background-image: url("/assets/img/others/waves2.svg"),
    linear-gradient(to right, #00368c, #042d71);
}

.container-signin {
  margin-top: auto !important;
}

.alert {
  display: none;
}

.alert {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.closebtn {
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1; /* Ensures the button is vertically centered */
}

.hidden {
  display: none;
}

select {
  max-height: 100px; /* Adjust the height as needed */
  overflow-y: auto;
}

.scrollable-dropdown {
  max-height: 200px; /* Adjust the height as needed */
  overflow-y: auto;
}

.logo-verified {
  width: 300px;
  align-self: center;
}

.card {
  box-shadow: 0 0 0.875rem 0 rgba(33, 37, 41, 0.05);
  margin-bottom: 0px !important;
}

.card-radio {
  display: none;
}

.logo {
  width: 400px;
  height: auto;
  margin-top: 50px;
  margin-left: 30px;
}

.signup-row {
  margin-top: auto;
  display: flex;
  padding-top: 2.5rem;
  padding-left: 5rem;
  padding-right: 5rem;
  padding-bottom: 0rem;
  justify-content: center;
}

.signin-row {
  margin-top: 5rem !important;
  display: flex;
  justify-content: center;
}

/* border-radius: 0rem 2rem 2rem 0rem; */

.signin-card,
.signup-card {
  border-radius: 0rem 1rem 1rem 0rem !important;
}

.signcard3 {
  border-radius: 1rem 0rem 0rem 1rem !important;
  background-image: url("/assets/img/others/signinbar.png");
  border-radius: 10px 10px;
  justify-content: center;
  background-repeat: round;
  position: relative;
  margin-right: -2rem;
}

.signcard1 {
  border-radius: 1rem 0rem 0rem 1rem !important;
  background-image: url("/assets/img/others/signbar.png");
  border-radius: 10px 10px;
  justify-content: center;
  background-repeat: round;
  position: relative;
  margin-right: -2rem;
}

@media screen and (max-width: 1539px) {
  .signup-row {
    /* margin-top: 20rem !important; */
  }
}

@media screen and (max-width: 767px) {
  .container-signin h1,
  .container-signin .card-body {
    color: #ffff !important;
  }
  .container-signin .signin-card {
    background-color: #fff0 !important;
  }

  .signup-row .signup-card {
    border-radius: 10px !important;
  }

  .order-container {
    margin-top: -8rem !important;
  }

  .order-container h2, 
  .order-container span {
    font-size: 1rem !important;
  }

  .signcard1,
  .signcard3 {
    background-image: none;
  }
  .signin-row {
    margin-bottom: 5vh;
    justify-content: none;
  }
  .signup-row {
    padding-left: 0rem;
    padding-right: 0rem;
  }
  .logo {
    display: none;
  }
}

@media screen and (max-width: 1080px) {
  .signcard1 {
    display: none;
  }
}

.card-radio + label {
  width: 100%;
  height: 50px;
  border: 1px solid black;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  margin: 0 5px;
  font-size: 14px;
}

.card-radio:checked + label {
  background-color: #007bff;
  color: white;
  border-color: #007bff;
}
.label-header {
  color: #007bff;
}

.radio-group {
  display: flex;
}

.question {
  text-align: center;
  margin-bottom: 20px;
  font-size: 18px;
}

.verified-icon {
  width: 120px;
  height: auto;
}

.next-btn,
.signin-btn {
  background-color: #007bff !important;
}

.verified-btn {
  background-color: #bb0000 !important;
}


#sign-btn .btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

#sign-btn .btn-text {
  display: inline-block;
  visibility: visible;
}

#sign-btn .loader {
  border: 4px solid #f3f3f3;
  border-top: 4px solid #3498db;
  border-radius: 50%;
  width: 5px;
  height: 5px;
  animation: spin 2s linear infinite;
  position: absolute;
  box-sizing: content-box;
}


#checkout-container .btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

#checkout-container .btn-text {
  display: inline-block;
  visibility: visible;
}

#checkout-container .loader {
  border: 4px solid #f3f3f3;
  border-top: 4px solid #3498db;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  animation: spin 2s linear infinite;
  position: absolute;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

