body {
     font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    width:414px;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    opacity: 0;
    margin-left:-10px;
    
}

.header {
        margin-top: 20px; 
        width: 400px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
}

.hidden {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.choose {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #F0F0F0;
    border: none;
    width: 320px;
    height: 40px;
    border-radius: 100px;
    text-indent: 10px;
    margin-top: 10px;
  }
  
  .option {
    cursor: pointer;
    padding: 10px;
    border-bottom: 2px solid transparent; 
    transition: border-bottom-color 0.7s ease;
  }
  
  .option.selected {
    border-bottom: 3.5px solid #FFD700; 
  }
button {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    padding: 10px;
    background-color: transparent;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    width: 100px;
    margin-bottom: 50px;
}
.custom-button {
    padding: 10px;
    background-color: transparent;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    
}

.back-button {
    display: inline-block;
    background-color:none;
    font-size: 25px; 
    border: none;
    cursor: pointer;
  }
h1{font-family: 'Montserrat', sans-serif;
    font-weight: 700;}

i.fa.fa-arrow-left{
  color: #F4BB44;  
}



