.mvp-ad-form{
    position: relative;
    box-sizing: border-box;
    width: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}
.mvp-ad-form-overlay{
    position: absolute;
    display: none;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
}
.mvp-ad-form-overlay .heart {
    position: absolute;
    margin: auto;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #ea384d;
    height: 50px;
    width: 50px;
    transform: rotate(-45deg);
    animation-name: beat;
    animation-duration: 1s;
    animation-iteration-count: infinite;
  }
.mvp-ad-form-overlay .heart:after {
    background-color: #ea384d;
    content: "";
    border-radius: 50%;
    position: absolute;
    width: 50px;
    height: 50px;
    top: 0px;
    left: 25px;
}
.mvp-ad-form-overlay .heart:before {
    background-color: #ea384d;
    content: "";
    border-radius: 50%;
    position: absolute;
    width: 50px;
    height: 50px;
    top: -25px;
    left: 0px;
}
@keyframes beat {
    0% {
      transform: scale(1) rotate(-45deg);
    }
    50% {
      transform: scale(0.6) rotate(-45deg);
    }
  }
.mvp-ad-form .ad-heading{
    margin: 0 0 20px 0;
    font-size: 35px;
    text-align: center;
}
.mvp-ad-form .ad-tab-heading{
    margin: 5px 0 5px 0;
    font-size: 22px;
    text-align: center;
}
.mvp-ad-form .ad-form-tab{
    display: none;
    flex-direction: column;
    align-items: center;
}
.ad-form-step-buttons{
    margin-top: 30px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.ad-form-step-buttons #nextBtn{
    margin-left: auto;
}
.ad-form-step-buttons button{
    border: none;
    cursor: pointer;
    padding: 15px 20px;
    font-size: 17px;
    border-radius: 4px;
    font-weight: bold;
}
.mvp-ad-form fieldset{
    border: none;
    display: flex;
    gap: 10px;
    padding: 0;
}
.mvp-ad-form .ageselector{
    display: flex;
    gap: 10px;
}
.mvp-ad-form input[type='radio']{
    opacity: 0;
    position: absolute;
}
.mvp-ad-form fieldset label{
    padding: 15px 20px;
    display: flex;
    align-items: center;
    cursor: pointer;
    border-radius: 4px;
}
.mvp-ad-form .error{
    border: 2px solid red;
}
.mvp-ad-form select{
    border-radius: 4px;
    padding: 15px 20px;
    -webkit-appearance: none;
}
.mvp-ad-form input,
.mvp-ad-form input[type="password"],
.mvp-ad-form input[type="email"]{
    border-radius: 4px;
    padding: 15px 20px;
}
