* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    text-decoration: none;
}
body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    font-family: 'Poppins', sans-serif;
    background: url(img/background.jpg) no-repeat;
    background-size: cover;
    background-position: center;
}

.wrapper {
    width: 350px;
    margin: 0 auto;
    position: relative;
    top: -50px;
    padding: 0;
    border-radius: 5px;
    background-color: white;
    color: white;
}

.step-indicator {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
}

.dot {
  width: 8px;
  height: 8px;
  background-color: #ccc;
  border-radius: 50%;
  margin-top: 20px;
}

.dot1 {
  background-color: #999999;
}

.dot2 {
  background-color: #b3b3b3;
}

.dot3 {
  background-color: #d9d9d9;
}

.wrapper h2 {
    font-size: 22px;
    text-align: center;
    margin-bottom: 20px;
    color: black;
}

hr{
    border: none;
    width: 100%;
    height: 1px;
    background-color: #ccc;
    margin-top: -1px;
}

.payment-option{
    padding: 0; 
    margin: 0;
    list-style: none;
    border-bottom: 1px solid;
    display: flex;
    flex-direction: row;
    cursor: pointer;
}

.payment-option:hover{
  background-color: #d9d9d9;
}

img {
    width: 37px;
    height: 37px;
    border-radius: 50%;
    margin-left: 20px;
}

.disable {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid #ccc;
    color: #b3b3b3;
    margin-left: 15px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
}

.active{
   display: flex;
   align-items: center;
   gap: 10px;
   padding: 10px 0;
   border-bottom: 1px solid #ccc;
   color: black;
   font-size: 15px;
   margin-left: 15px;
   font-weight: 600;
   text-decoration: none;
}

.arrow{
    height: auto;
    margin-left: auto;
    margin-right: 15px;
}

.wrapper .btn{
    width: 100%;
    height: 45px;
    background-color: #598bdd;
    border: none;
    color: white;
    outline: none;
    cursor: pointer;
    font-weight: bold;
    transition: transform 0.3s ease;
  }

.wrapper .btn:active{
   transform: scale(0.98);
}

.arrow-icon{
    margin-left: 8px;
    font-size: 18px;
}