body {
font-family: Arial, sans-serif;
text-align: center;
}
.form-container {
background-color: rgb(246, 189, 66);
padding: 2rem;
border-radius: 10px;
width: 280px;
margin: 20px auto;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
position: relative;
}
.cartao-img {
width: 90%;
}
.highlight-white {
color: #fff;
font-weight: 700;
}
.text-center {
text-align: center;
margin-bottom: 10px;
}
.form-step {
text-align: left;
background-color: rgb(246, 189, 66);
display: flex;
flex-direction: column;
align-items: center;
}
form {
position: relative;
}
.form-title {
color: rgb(31, 31, 31);
letter-spacing: 1px;
font-size: 1.5rem;
}
.form-subtitle {
color: rgb(31, 31, 31);
letter-spacing: 1px;
border-top: 1.2px solid;
border-bottom: 1.2px solid;
padding: 2px;
width: 90%;
}
.policy-url {
color: #0000ff;
}
label {
display: block;
margin-bottom: 7px;
text-align: left;
font-size: 12px;
font-weight: 700;
}
input,
button,
select {
width: 100%;
padding: 4px;
margin-bottom: 15px;
border-radius: 20px;
border: 1px solid #ccc;
box-sizing: content-box;
}
input {
text-transform: uppercase;
}
.input-wrapper {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 10px;
position: relative;
}
.input-wrapper .error-msg {
position: absolute;
bottom: -15px;
left: 0;
right: 0;
}
.input-item-10 {
width: 10%;
}
.input-item-20 {
width: 20%;
}
.input-item-30 {
width: 30%;
}
.input-item-40 {
width: 40%;
}
.input-item-45 {
width: 45%;
}
.input-item-50 {
width: 60%;
}
.input-item-60 {
width: 60%;
}
input[type="checkbox"] {
margin-right: 10px;
width: 20px;
height: 20px;
}
.checkbox-wrapper {
display: flex;
align-items: center;
}
.checkbox-wrapper.privacidade {
margin: 30px 0;
position: relative;
}
button {
background-color: #3c3c3b;
color: #fff;
font-weight: 700;
cursor: pointer;
border-radius: 5px;
padding: 5px;
width: 170px;
display: block;
margin-left: auto;
}
button:hover {
background-color: #000;
color: #fff;
}
button:disabled {
background-color: #a9a9a9;
color: #ffffff;
cursor: not-allowed;
opacity: 0.7;
}
button:active {
background-color: #fff;
}
.input-container {
display: flex;
justify-content: space-around;
}
.text-input-container {
margin-bottom: 2rem;
}
.submit-dependente {
margin-bottom: 20px;
}
.dependente-buttons {
margin-top: 20px;
}
.error-msg {
color: red;
text-align: center;
font-size: 12px;
display: block;
margin-top: -10px;
margin-bottom: 10px;
}
.error-msg.dependente {
margin-top: 0;
}
.error-msg.politica-privacidade {
position: absolute;
bottom: 50px;
left: 0;
right: 0;
}
.sucess-msg {
color: rgb(116, 163, 46);
font-weight: 700;
font-size: 16px;
}
@media (min-width: 1024px) {
.form-container {
width: 425px;
}
.cartao-img {
width: 70%;
}
} .switch {
position: relative;
display: inline-block;
width: 50px;
height: 23px;
}
.switch input {
opacity: 0;
width: 0;
height: 0;
}
.slider {
position: absolute;
cursor: pointer;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: #ccc;
-webkit-transition: 0.4s;
transition: 0.4s;
}
.slider:before {
position: absolute;
content: "";
height: 15px;
width: 15px;
left: 4px;
bottom: 4px;
background-color: white;
-webkit-transition: 0.4s;
transition: 0.4s;
}
input:checked + .slider {
background-color: #2196f3;
}
input:focus + .slider {
box-shadow: 0 0 1px #2196f3;
}
input:checked + .slider:before {
-webkit-transform: translateX(26px);
-ms-transform: translateX(26px);
transform: translateX(26px);
}
.slider.round {
border-radius: 34px;
}
.slider.round:before {
border-radius: 50%;
} #loading-overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.5);
display: flex;
justify-content: center;
align-items: center;
z-index: 1000;
}
#loading-overlay.hidden {
display: none;
}
.spinner {
border: 8px solid #f3f3f3;
border-top: 8px solid #3498db;
border-radius: 50%;
width: 50px;
height: 50px;
animation: spin 1s linear infinite;
}
@keyframes spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
} #custom-alert {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.5);
display: flex;
justify-content: center;
align-items: center;
z-index: 1000;
} .alert-box {
background-color: #fff;
padding: 20px;
border-radius: 5px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
text-align: center;
max-width: 300px;
width: 80%;
position: absolute;
left: 0;
right: 0;
margin-left: auto;
margin-right: auto;
top: 40%;
}
.alert-box h2 {
margin-top: 0;
font-size: 20px;
color: #333;
}
.alert-box p {
font-size: 16px;
color: #666;
margin: 15px 0 20px;
}
.alert-box button {
border: none;
padding: 10px 20px;
border-radius: 5px;
cursor: pointer;
font-size: 14px;
width: 100px;
margin: auto;
} .hidden {
display: none !important;
}
#generate-pix-btn {
margin-left: auto;
margin-right: 0;
display: block;
}
#qrcode {
text-align: center;
display: flex;
justify-content: center;
margin: 40px 0;
}
#qrcode img {
width: 200px;
height: 200px;
}
#copy-pix-btn {
margin-top: 30px;
}
.cpf-loading {
position: absolute;
right: 10px;
top: 15%;
width: 10px;
height: 10px;
border: 2px solid #f3f3f3;
border-top: 2px solid #f6bd42;
border-radius: 50%;
animation: spin 1s linear infinite;
background: transparent;
pointer-events: none;
transform: translateY(-50%);
z-index: 2;
}
.cpf-loading.hidden {
display: none !important;
}
.cpf-input-wrapper {
position: relative;
width: 100%;
}
.cpf-input-wrapper input {
padding-right: 28px;
width: 100%;
box-sizing: border-box;
} #pix-timer-div {
margin-top: 30px;
margin-bottom: 10px;
font-weight: bold;
color: #111;
text-align: right;
font-size: 12px;
width: 100%;
display: flex;
justify-content: flex-end;
align-items: center;
}
#pix-timer-span { margin-left: 4px;
}
#form-step-3 label {
text-align: justify !important;
}