*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
@font-face {
    font-family: 'poppins_medium';
    src: url('../../assets/fonts/Poppins-Bold.ttf') format('woff'),
    url('../../assets/fonts/Poppins-Bold.ttf') format('woff');
    font-weight: normal;
    font-style: normal;
  }

.modal-global{
    width: 100%;
    height: 100%;
    position: fixed;
    top:0;
    left: 0;
    z-index: 99999;
    background-color: rgba(0,0,0,0.5);
    display: grid;
    place-items: center;
}

.formulario-info-container-global{
    max-width:550px;
    margin: 0 2rem;
    background-color:white;
    border-radius:15px;
    height:auto;
    padding:2rem;
    text-align:center;
}

h2{
    color: #FF1065;
}

h3{
    color: #1C2F74;
}
h4{
    color: #2583C6;
}

.formulario-body-global > p{
    text-align: justify;
    margin-right: 0;
    margin-left: 0;    
}

.input-form-global{
    border: 1px solid #bbb !important;
    padding:0.75rem !important;
    margin: 0 !important;
    margin-bottom:1rem !important;
    outline: none !important;
    width: 100% !important;
    height: auto !important;
    font-size: 1rem !important;
}



.form-global{
    margin-top:1rem;
    text-align:center;
}


.gap-1{
    gap:1rem;
}

.w-100{
    width:100%
}

.btn-submit-global{
	display: block;
	margin: 2rem auto;
	padding: 1rem 3rem;
	border: 0;
	border-radius: 10px;
	background-color: #FF1065;
	color: #fff;
	font-weight: bold;
	font-size: 18px;
	box-shadow: 3px 4px #1C2F74;
	cursor: pointer;
}

.error-text {
    text-align: center;
    color: red;
    font-size: 0.8rem;
    margin-top: 0.5rem;
}
.img-modal{
    width: 7rem;
    height: auto;
    margin-top: 2rem;
}
.padding-modal{
    padding: 5rem;
}
.pt-2{
    padding-top: 2rem;
}

.text-start{
    text-align: start;
    padding-left: 3rem;
    font-family: 'poppins_medium';
    font-size:0.8rem;
}
.absolute{
    position: absolute;
    z-index: 10000;
}
.d-flex{
    display:flex;
}
.d-none{
    display: none;
}
.text-modal{
    font-family: 'poppins_medium';
    color: #636363;
    font-size: 0.9rem;
    line-height: 1.5rem;
}
.py-2{
    padding-top:1.5rem;
    padding-bottom: 2rem;
}