.button-container {
    display: flex;
    gap: 10px;
}

.forms {
    padding: 30px;
    background-color: rgb(212 212 212 / 36%) !important;
}


.form-section {
    display: none;
}

.form-section.current {
    display: block;
}

h1 {
    color: #717793;
    font-weight: 700;
    font-size: 26px;
    line-height: 32px;
    margin: 17px 0 24px;
    text-align: center;
    font-family: Arial, sans-serif;
}

p {
    color: #717793;
}

.para_res {
    text-align: left
}

.current_addbutton {
    background-color: #43a047;
    color: #fff;
    border: 0;
    padding: 12px 0;
    width: 80%;
    margin-left: 10%;
    border-radius: 3px;
    line-height: 27px;
    box-shadow: 0 3px 15px rgba(67, 160, 71, .3);
    cursor: pointer;
    position: relative;
}

.current_addbutton input[type="radio"] {
    display: none;

}

.current_addbutton label {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.current_addbutton label:before {
    content: '';
    width: 20px;
    height: 20px;
    border: 2px solid #fff;
    border-radius: 50%;
    margin-right: 10px;
    position: relative;
    transition: background-color 0.3s, border-color 0.3s;
}

.current_addbutton input[type="radio"]:checked+label:before {
    background-color: #43a047;
    border-color: #43a047;
}

.current_addbutton input[type="radio"]:checked+label span {
    color: #fff;
}

.current_addbutton input[type="radio"]:not(:checked)+label:before {
    background-color: transparent;
    border-color: #43a047;
}

.current_addbutton input[type="radio"]:focus+label:before {
    box-shadow: 0 0 5px rgba(67, 160, 71, 1);
}

.spanText {
    font-size: 19px;
    padding-left: 23%;
}

.para {
    font-size: 17px;
}