* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: system-ui, sans-serif
}

/* body {
    background: url(https://cdnjs.cloudflare.com/ajax/libs/vegas/2.3.1/overlays/06.png) left top repeat,linear-gradient(to left,rgba(2,18,78,0.5) 0%,rgba(222,49,12,0.5) 100%),url('../images/fundo_entrada8.jpg') center center no-repeat; background-size: auto,auto,cover;
    background-attachment: fixed;
    opacity: 1;
} */

body{
    background-color: rgba(247, 245, 255, 1)
}

#regForm {
    position: relative;
    background: rgba(255, 255, 255, 0.9);
    margin: 30px auto;
    margin-top: 150px;
    font-family: Raleway;
    padding: 10px 40px;
    width: 70%;
    min-width: 300px;
    height: calc(100% + 30px);
    border-radius: 5px;
    box-shadow: rgba(109, 74, 255, 0.16) 0px 8px 24px 0px;
}

.header{
    text-align: center;  
}



input[type="text"],
input[type="date"],
input[type="file"],
input[type="email"],
input[type="password"],
select,
textarea{
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;;
    transition: border-color .15s ease-in-out;
}

/* input[type='radio']{
    
} */


select:focus,
input[type="text"]:focus,
input[type="date"]:focus,
input[type="file"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
textarea:focus{
    color:#212529;;
    background-color:#fff;
    border-color:#86b7fe;
    outline:0;
    box-shadow:0 0 0 .25rem rgba(13,110,253,.25)
}


input[type=file]:not(:disabled):not([readonly]) {
    cursor: pointer;
}


select {
    --bs-form-select-bg-img:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    display:block;
    width:100%;
    padding:.375rem 2.25rem .375rem .75rem;
    font-size:1rem;
    font-weight:400;
    line-height:1.5;
    color:#212529;
    -webkit-appearance:none;
    -moz-appearance:none;
    appearance:none;
    background-color:#fff;
    background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e"),var(--bs-form-select-bg-icon,none);
    background-repeat:no-repeat;
    background-position:right .75rem center;
    background-size:16px 12px;
    border:1px solid #dee2e6;
    border-radius:0.375rem;
    transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out
}

select:focus {
    border-color:#86b7fe;
    outline:0;
    box-shadow:0 0 0 .25rem rgba(13,110,253,.25)
}



/* Mark input boxes that gets an error on validation: */
input.invalid {
    border-color: #dc3545;
    padding-right: calc(1.5em + 0.75rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

/* Hide all steps by default: */
.tab {
display: none;
}

#nextBtn.primary{
    background-color: #0d6efd;
    border: none;
    padding: 10px 20px;
    font-size: 17px;
    font-family: Raleway;
    cursor: pointer;
    border-radius: 6px;
    color: #FFF;
} 

#nextBtn.primary:hover{
    background-color: #0b5ed7;
}  



#nextBtn {
background-color: transparent;
border: none;
padding: 10px 20px;
font-size: 17px;
font-family: Raleway;
cursor: pointer;
transition: background-color .15 ease-in-out;
border: 1px solid  #26bb12;
border-radius: 6px;
color: #26bb12;
}

#nextBtn:hover {
    background-color: #26bb12;
    color: #FFF;
}

#prevBtn {
    background-color: transparent;
    border: none;
    padding: 10px 20px;
    font-size: 17px;
    font-family: Raleway;
    cursor: pointer;
    transition: background-color .15 ease-in-out;
    border: 1px solid  #bbbbbb;
    border-radius: 6px;
    color: #bbbbbb;
}

#prevBtn:hover{
    background-color: #bbb;
    color: #FFF;
}

/* Make circles that indicate the steps of the form: */
.step {
height: 15px;
width: 15px;
margin: 0 2px;
background-color: #bbbbbb;
border: none;  
border-radius: 50%;
display: inline-block;
opacity: 0.5;
}

.step.active {
opacity: 1;
}

/* Mark the steps that are finished and valid: */
.step.finish {
background-color: #04AA6D;
}

label{
    display: block;
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 5px;
    text-transform: uppercase;
}
label:not(:first-child){
margin-top: 20px;
}

#fixo{
margin-top: 30px;
}

#balls{
margin-bottom: 40px;
}


.container-radio,
.blood-type{
    display: flex;
    align-items: center;
}

.container-radio{
    margin-top: 20px;
    margin-left: 20px;
}
