.wrapper-resume-total-calculated {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 15px;
}

.result-style-block {
  flex: 1;
  min-width: 200px;
  text-align: center;
  padding: 15px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0px 0px 20px rgb(0 0 0 / 12%);
}

.result-style-block p {
  text-transform: uppercase;
  font-family: var(--third-font);
  font-size: 20px;
  line-height: 20px;
  color: #333;
  margin: 0;
}

.result-style-block h5 {
  color: #000;
  font-size: 24px;
  margin: 10px 0;
  font-weight: bold;
}

.content-label-result {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px 0;
}

.content-label-result h4 {
  margin: 0;
  font-size: 20px;
  color: #0056b3;
}

.financier-logo {
  height: 40px;
  width: auto;
}

/* Estilos del formulario */
.naikka-credit-form {
  max-width: 100%;
  margin: 0 auto;
  padding: 20px;
  background-color: #fcfcfc;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(0, 71, 161, 0.15);
}

/* Grid para los campos de valor y cuota inicial */
.naikka-credit-form .form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 1.5rem;
}

.naikka-credit-form .form-group {
  margin-bottom: 1.5rem;
}

/* Para campos que deben ocupar todo el ancho */
.naikka-credit-form .form-group.full-width {
  grid-column: 1 / -1;
}

/* Responsive */
@media (max-width: 768px) {
  .naikka-credit-form .form-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

.naikka-credit-form .form-label {
  display: block;
  margin-bottom: 5px;
  font-weight: 700;
  color: #333;
  font-size: 1rem;
  text-transform: uppercase;
}

.naikka-credit-form .form-control,
.naikka-credit-form .form-select {
  width: 100%;
  line-height: 1.5;
  color: #000;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.25);
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 1rem;
  font-size: 1.25rem;
  border-radius: 0.3rem;
}

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

.naikka-credit-form button.btn-primary {
  border: none;
  padding: 15px 20px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  border-radius: 5px;
  font-weight: bold;
  font-style: normal;
  font-size: 20px;
  background-color: #ff0000;
  color: #ffffff;
  border-color: #ff0000;
}

.naikka-credit-form button.btn-primary:hover,
.naikka-credit-form button.btn-primary:focus {
  opacity: 0.9;
}
