/* :root {
    --primary-color-8: rgba(108,96,239, 0.8);
    --primary-color-6: rgba(108,96,239, 0.6);
    --secondary-color: #f1acc0;
  }
.background-image-body {
    background-image: url("img/bg2-A9MJpfz.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.btn-check:checked + label {
    background-color: var(--primary-color-8);
    border: 2px solid var(--primary-color-8);
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(220, 225, 245, 0.4);
}

.btn-check:hover + label {
    background-color: var(--primary-color-6);
    border: 2px solid var(--primary-color-8);
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(220, 225, 245, 0.2);
}

.btn-check + label {
  	height: 100%;
    background-color: rgba(240, 240, 240, 0.9);
    border: 2px solid var(--primary-color-8);
    color: #333;
    transition: all 0.3s ease;
    padding: 12px;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-previous {
  	background-color: rgba(199,200,201, 0.6)!important;
}

.btn-next {
	background-color: rgba(141, 197, 147, 0.6)!important;
}

.btn-previous:hover {
  	background-color: rgba(169,170,171, 1) !important;
  	color: white!important;
}

.btn-next:hover {
	background-color: rgba(111, 167, 117, 1) !important;
  	color: white!important;
}


.formStepTitle {
	background-color:  var(--secondary-color);
	color: white;
    padding: 1rem;
    margin: 2rem 0;
    text-align: center;
    border-radius: 10px;
}

.btn-check:active + label {
    background-color: rgba(141, 197, 147, 0.9);
    border-color: rgba(141, 197, 147, 1);
    transform: scale(0.98);
}

.form-title {
    font-size: 1.4rem;
    letter-spacing: 1px;
	padding: 0.5rem 2rem;
    border-radius: 25px;
    background-color:var(--secondary-color);
}

.form-title.text-center {
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-weight: bold;
    color: #333333;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.custom-textarea {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #ffffff;
    background-clip: padding-box;
    border: 3px solid rgba(141, 197, 147, 0.8);
    border-radius: 8px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    resize: none;
}

#address-input {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #ffffff;
    background-clip: padding-box;
    border: 4px solid rgba(141, 197, 147, 0.8);
    border-radius: 8px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    resize: none;
}

#address-input:focus {
    border-color: #5b5bf1;
    box-shadow: 0 0 8px rgba(91, 91, 241, 0.25);
    outline: none;
}

#address-input:hover {
    border-color: #5b5bf1;
    background-color: #f9f9ff;
}

.custom-textarea:focus {
    border-color: #5b5bf1;
    box-shadow: 0 0 8px rgba(91, 91, 241, 0.25);
    outline: none;
}

.custom-textarea:hover {
    border-color: #5b5bf1;
    background-color: #f9f9ff;
}

.form-text {
    font-size: 0.875rem;
    color: #6c757d;
}

.custom-integer-input-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    width: fit-content;
    border: 3px solid rgba(141, 197, 147, 0.8);    
    border-radius: 8px;
    overflow: hidden;
    background-color: #fff;
    transition: border-color 0.3s ease;
}

.custom-integer-input-wrapper:focus-within {
    border-color: #5b5bf1;
    box-shadow: 0 0 8px rgba(91, 91, 241, 0.25);
}

.custom-integer-input {
    width: 80px;
    height: 40px;
    text-align: center;
    font-size: 1rem;
    font-weight: 500;
    outline: none;
    border:none;
    background: none;
    padding: 0;
    color: #495057;
    font-family: inherit;
}

.custom-integer-input::-webkit-inner-spin-button,
.custom-integer-input::-webkit-outer-spin-button {
    margin: 0;
    -webkit-appearance: none;
}

.custom-integer-input:focus {
    outline: none;
}


.custom-money-input-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    border: 3px solid rgba(141, 197, 147, 0.8);    
    border-radius: 8px;
    padding: 0.5rem;
    background-color: #fff;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.custom-money-input-wrapper:focus-within {
    border-color: #5b5bf1;
    box-shadow: 0 0 8px rgba(91, 91, 241, 0.25);
}

.custom-money-input {
    flex-grow: 1;
    font-size: 1rem;
    font-weight: 500;
    border:none;
    outline: none;
    background: none;
    padding: 0;
    color: #495057;
    font-family: inherit;
}


.custom-money-symbol {
    font-size: 1rem;
    font-weight: bold;
    color: #6c757d;
} */