* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}
/*Colores*/
:root {
  /*? New colors*/
  --white: #ffffff;
  --gray10: #f4f4f4;
  --dark: #242424;
  --blue: #2c438d;
  --gray: #b9b9b9;
  --darkGray: #686565;
  --red: #e54d2e;
  --green: #16644d;
  --geen-secondary: #6a8072;
  --yellow: #f1f1e0;
}
img {
  max-width: 100%;
}
.contenedor {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100%;
  min-height: 100vh;
  position: relative;
  background-color: var(--gray10);
  justify-content: center;
}
.contenedor-wrapper {
  width: 100%;
  max-width: 1200px;
  position: relative;
}
.pass {
  max-width: 550px !important;
}
.main-wrapper {
  position: relative;
  padding: 20px 16px;
}
.centered {
  display: flex;
  align-items: center;
  justify-content: center;
}
.column {
  flex-direction: column;
}
.row {
  width: 100%;
}
.flex {
  display: flex;
}
.between-data {
  justify-content: space-between;
  align-items: center;
}
.monograma {
  width: 48px;
  margin-bottom: 20px;
}
.full-img {
  width: 100%;
}

/*Botones*/
.btn {
  text-align: center;
  width: auto;
  border-radius: 2000px;
  border: 0px;
  padding: 8px 24px;
  text-decoration: none;
  display: inline-block;
  transition: all ease-in 0.3s !important;
  cursor: pointer;
}
.btn > path {
  transition: all ease-in 0.3s !important;
}

.btn.secondary {
  border: 1px solid var(--blue);
}
.btn:hover {
  background-color: var(--blue);
  color: var(--white);
}

/*Principal btn*/
.btn.principal {
  background-color: var(--blue);
  color: var(--white) !important;
  border: 1px solid var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2000px;
  width: auto;
  cursor: pointer;
  align-self: center;
  gap: 0.5rem;
}
.btn.principal:hover {
  background-color: transparent;
  color: var(--blue) !important;
  border: 1px solid var(--blue);
}

.btn.principal:hover path {
  stroke: var(--blue);
}

/*margins*/
.mb-4 {
  margin-bottom: 1rem;
}

.footer-section {
  padding: 20px 16px 40px 16px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
