#etapa {
    display: flex;
    flex-direction: column;
    background-color: #d4d4d420;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid;
    border-color: #d4d4d4;
    gap: 15px;

}

.formBuilder {
    display: flex;
    flex-direction: column;
    gap: 15px;
    background-color: transparent;
}

#headForm {
    display: flex;
    flex-direction: row;
    background-color: transparent;
    gap: 10px;
    width: fit-content;
    height: 30px;
}

#headForm p:first-of-type {
    display: flex;
    background-color: #FF4B2A;
    padding: 4px;
    border-radius: 5px;
    color: white;
    font-size: 18px;
    width: 23px;
    height: 23px;
    justify-content: center;
    align-items: center;
    font-weight: bold;
}

#headForm p:last-of-type {
    display: flex;
    background-color: transparent;
    color: #FF4B2A;
    text-align: start;
    justify-content: center;
    align-items: center;
    font-weight: 600;
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    background-color: transparent;
}

form div {
    display: flex;
    flex-direction: column;
    background-color: transparent;
}

label {
    background-color: transparent;
    font-weight: 600;
}

input {
    border-radius: 5px;
    padding-block: 15px;
    border: 1px solid;
    border-color: #d4d4d4;
    background-color: transparent;
    padding-inline: 15px;
}

input::placeholder{
    opacity: 30%;
}

.paymentForm {
    display: flex;
    flex-direction: row;
    background-color: white;
    gap: 10px;
    justify-content: start;
    align-items: center;
    border: 1px solid #FF4B2A;
    border-radius: 5px;
    padding: 15px;
    font-weight: bold;
    transition: 0.5s;
}

.paymentForm:active {
    background-color: #FF4B2A;
    color: white;
}

.paymentForm p {
    background-color: transparent;
}

.info {
    display: flex;
    flex-direction: column;
    background-color: white;
    padding: 15px;
    gap: 25px;
}

.info h4 {
    background-color: transparent;
}

.info ul {
    display: flex;
    flex-direction: column;
    border-radius: 5px;
    background-color: white;
    min-height: 100px;
    list-style: none;
    gap: 15px;
}

h5 {
    font-size: 14px;
    font-weight: 700;
}

.info ul li {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.info ul li div:first-of-type{
    display: flex; 
    padding: 10px;
    width: 20px;
    height: 20px;
    border-radius: 99px;
    background-color: #FF4B2A;
}

.info ul li div:last-of-type{
    display: flex;
    flex-direction: column;
    width: 80%;
    gap: 5px;
}

.info ul li p {
    font-size: 15px;
    font-weight: 500;
}

svg {
    background-color: transparent;
}

.pixIcon {
    background-color: transparent;
    width: 25px;
    fill: #FF4B2A;
}

.continuebttn {
    background-color: #FF4B2A;
    font-weight: 700;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s ease;
    color: white;
}

.continuebttn:hover {
  background-color: #ca1e00;
}