:root {
    --primary-color: #5C31B8;
    --btn-color: #F5F5F5;
    --grey-color: #00000021;
}


body {
    font-family: 'Poppins', sans-serif;
    background: rgb(232,232,232);
   
}

* {
    padding: 0;
    margin: 0;
}

img {
  max-width: 100%;
  height: auto;
  max-height: 200px;
  width: auto;
}

.d-flex {
    display: flex;
    justify-content: center;
}
.subheading{
    text-align: center;
    font-weight: bold;
    font-size: 20px;
    margin: 20px 0;
}
.btn {
    display: flex;
    align-items: center;
    background-color: var(--btn-color);
    font-size: 20px;
    font-weight: 400;
    text-decoration: none;
    color: black;
    border-radius: 10px;
    padding: 0px 15px;
    border: 1px solid var(--grey-color);
    height: 54px;
    margin-bottom: 20px;
    cursor: pointer;
}
select.btn {
    width: 100%;
}
.btn:hover,input[type="radio"]:checked + label.btn-default {
    background-color: var(--primary-color);
    color: white;
}

.btn .btn-img {
    max-width: 45px;
    margin-right: 30px;
}

.arrow-btn {
    padding: 0px 25px;
    justify-content: space-between;
}

.arrow-btn:nth-child(even) img {
    filter: brightness(1000%);
}


h1,
h2 {
    color: white;
    text-align: center;
    font-weight: 400;
    font-size: 30px;

}

h2 {
    font-size: 28px;

}



/* Step Forms */

.step {
            display: none;
            transition: transform 0.5s ease-in-out;
            width: 90%;
    margin: auto;
        }

        .next-step-entering, .prev-step-exiting {
            transform: translateX(100%);
        }
        .next-step-exiting, .prev-step-entering {
            transform: translateX(-100%);
        }
        input[type="radio"]{
            display: none;
        }
        
.banner {
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(../images/banner-bg.png);
    background-size: cover;
    background-position: bottom;
    min-height: 86px;
    padding: 10px;
}

.banner2 {
    min-height: 100px;
}

/*.btn-section {
    text-align: center;

    display: flex;
    align-items: center;
    justify-content: center;
}*/

.submit-form {
    padding: 20px;
    padding-top: 40px;
}

.submit-form form{
    display: flex;
    flex-direction: column;
}

input[type=text],.input,textarea {
    font-family: 'Poppins', sans-serif;
    background-color: var(--btn-color);
    font-size: 16px;
    font-weight: 300;
    color: black;
    border-radius: 10px;
    padding: 0px 15px;
    border: 1px solid var(--grey-color);
    height: 54px;
    margin-bottom: 20px;
    transition: .3s;
    width: 91%;
}
textarea{
    height: auto;
    padding: 10px;
}
input[type=text]:focus-visible,.input:focus-visible {
    outline: none;
    border-color: var(--primary-color);
    transition: .3s;
}

.radio-col {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
    margin: 20px 0;
    justify-content: center;
}

.submit-form input[type=radio] {
    accent-color: var(--primary-color);
    margin-right: 8px;
    transform: scale(1.4);
}

.submit-form p {
    font-weight: 500;
}

.submit-form p span{
    color: #D90000;
}

.submit-form .btn {
    background-color: var(--primary-color);
    color: white;
    justify-content: center;
    margin: 20px auto;
}

.submit-form .btn img {
    filter: brightness(1000%);
    margin: 0;
    margin-left: 36px;
}

section#footer {
    position: fixed;
    bottom: 0;
    width: 100%;
}