@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* font-family: "Poppins", sans-serif; */







/* container */
.signup-container {
  max-width: 1030px;
  width: 100%;
  margin: 80px auto;
}


/* card */
.card {
  position: relative;
  background: #fff;
  padding: 40px;
  border-radius: 14px;
  box-shadow: 3px -3px 8px 0 rgba(0, 0, 0, 0.2), -3px 3px 8px 0 rgba(0, 0, 0, 0.2);

  text-align: center;
}

/* close button */
.close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 32px;
  height: 32px;
  border: 1px solid #ccc;
  border-radius: 50%;
  text-decoration: none;
  color: #333;
  font-size: 20px;
  line-height: 30px;
  transition: 0.5s all ease;
}
.close:hover{
  background-color: #f08526;
  color: white;

}

/* logo */
.logo {
  width: fit-content;
  margin: 0 auto;
  margin-bottom: 50px;
}
/* options */
.options-row {
  margin-bottom: 30px;

}
.options-row a{
  font-size: 24px;
  color: black;
}

.option {
  width: 100%;
  padding: 20px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  border: 1px solid #ddd;
  border-radius: 20px;
  font-size: 24px;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.3s ease;
}

.option img {
  height: 24px;
  width: 24px;
  margin-bottom: 50px;
}

.option p {
  text-align: start;
}
.option p span{
  display: block;
}

/* hover */
.option:hover {
  border-color: #f08526;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}

/* active */
.option.active {
  border-color: #f08526;
  background: #fff3ea;
}

/* button */
.btn-orange {
  display: inline-block;
  margin: 20px 0;
  padding: 14px 34px;
  background: #f08526;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 500;
  transition: 0.3s;
   border: 2px solid transparent;
}


.btn-orange:hover {

  background: white;
  color: #f08526;
  border: 2px solid #f08526;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);

}

/* sign in */
.signin {
  
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  margin-bottom: 50px;
}

.signin a {
  color: #0b125a;
  text-decoration: underline;
  margin-left: 5px;
}

.dropdown {
  position: relative;
  display: inline-block;
}

/* Sign in link */
.dropdown-trigger {
  color: #0B125A;
  text-decoration: none;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s all ease;
}

.dropdown-trigger:hover {
  color: #f08526;
}

/* Dropdown box */
.dropdown-menu {
  position: absolute;
  top: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  background: #0b1a6d;
  border-radius: 10px;
  padding: 8px 0;
  min-width: 160px;
  width: 100%;
  text-align: left;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 100;
}

/* Show dropdown */
.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* Menu items */
.dropdown-menu li a {
  display: block;
  padding: 8px 10px;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
}

/* Hover effect */
.dropdown-menu li a:hover {
  background: rgba(255, 255, 255, 0.12);
}
/* ============================
   Tablet (max-width: 991px)
============================ */
@media (max-width: 991px) {

  .container {
    margin: 40px 20px;
  }

  .card {
    padding: 30px;
  }

  .option {
    padding: 25px 15px;
    font-size: 13px;
  }
}


/* ============================
   Mobile (max-width: 767px)
============================ */
@media (max-width: 767px) {

  .row {
    margin: 0;
  }

  .col50 {
    width: 100%;
    padding: 0;
  }

  .option {
    margin-bottom: 15px;
  }

  .logo {
    width: 50px;
    margin-bottom: 20px;
  }

  .signin {
    font-size: 13px;
  }
   .options-row {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .option img{
    margin-bottom: 10px;
  }

}


/* ============================
   Small Mobile (max-width: 480px)
============================ */
@media (max-width: 480px) {

  .card {
    padding: 25px 20px;
  }

  .option {
    font-size: 12px;
    padding: 20px 10px;
  }

  .close {
    top: 15px;
    right: 15px;
    width: 28px;
    height: 28px;
    line-height: 26px;
    font-size: 18px;
  }
}

