@import url('https://fonts.googleapis.com/css2?family=Agbalumo&family=Inter:wght@200;300;400;500;600;700;800;900&family=Jockey+One&family=Lato:ital,wght@0,300;0,400;0,700;0,900;1,400;1,700;1,900&family=Montserrat:wght@300;400;500;600;700;800;900&family=Nunito:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;0,1000;1,400;1,1000&family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&family=Poppins:ital,wght@0,100;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,700&family=Raleway:wght@400;500;600;700&family=Roboto:ital,wght@0,300;0,400;0,500;0,700;0,900;1,100;1,500;1,700;1,900&family=Rubik:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,900&display=swap');* {
  
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

.signup-wrapper {
  width: 100%;
  min-height: 100vh;
  position: relative;
}

:root {
  --blue: #3e6ecb;
  --navy: #2f60a4;
  --bg: linear-gradient(
    113.97deg,
    #205cbe 4.87%,
    rgba(12, 99, 241, 0.507512) 233.45%,
    rgba(14, 123, 223, 0.33285) 312.11%,
    rgba(22, 85, 187, 0) 462.03%
  );
  --boxShadow: 150px -250px 200px #6100d6;
}

html {
  overflow-x: hidden;
  font-family: "Nunito", sans-serif !important;
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
}

.button {
  padding: 10px 15px;
  width: 14rem;
  outline: none !important;
  border: none !important;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  border-radius: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--blue);
  text-transform: uppercase;
  transition: all 0.3s;
}





.custom-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.custom-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 14px; /* Increased from 10px to 14px for a bit more space */
}

.custom-bullet {
  display: inline-block;
  width: 12px;
  height: 12px;
  background-color: #FBAA6B;
  margin-right: 16px;
  flex-shrink: 0;
  margin-top: 4px; /* Ensures alignment with top of text */
}

.custom-text {
  color: #000000;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  /* font-size: 14px; */
}