.logo-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
}

.logo-wrapper img {
  width: 100%;
}

/*input form*/

.inicio-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.input-row {
  width: 100%;
  margin: 32px 0px 0px 0px;
  position: relative;
}

.input-row input {
  background-color: var(--gray10);
  border-radius: 0px;
  color: var(--blue);
  padding: 0px 16px 0px 16px;
  height: 38px;
  appearance: none !important;
  border: none;
  width: 100%;
  text-align: center;
  -webkit-appearance: none !important;
  transition: all ease-in-out 0.3s;
  font-size: var(--3fs);
  line-height: var(--3lh);
}

.normal-input {
  border-bottom: 1px solid var(--gray) !important;
}
.normal-input::placeholder {
  color: var(--gray) !important;
}

.error-input {
  border-bottom: 1px solid var(--red) !important;
}
.error-input::placeholder {
  color: var(--red) !important;
}

.input-row input:focus {
  border-bottom: 1px solid var(--blue) !important;
  outline: none;
}

.input-row .info-svg {
  position: absolute;
  right: 16px;
  top: 8px;
  cursor: pointer;
  transition: all ease-in 0.2s;
}
.input-row .info-svg:hover {
  transform: translateY(-2px);
}

.descripcion-wrapper {
  padding: 24px;
  background-color: var(--gray10);
  border-radius: 10px;
  position: absolute;
  left: 5%;
  top: 20vh;
  z-index: 10;
  width: 90%;
  display: none;
}
.info-data-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  align-items: flex-end;
  justify-content: center;
}

.overlay {
  position: fixed;
  z-index: 2;
  left: 0px;
  top: 0px;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
}

.close-info {
  cursor: pointer;
}
.close-info img {
  width: 20px;
  height: 20px;
}
.info-data-wrapper p {
  font-size: var(--1fs);
  line-height: var(--1lh);
  text-align: center;
  color: var(--dark);
  margin: 24px 0px;
}
.contrato-show-img {
  width: 100%;
}

.form-btn {
  margin-top: 24px;
}

.error-msg {
  display: none;
}
