* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: #f2f2f2;
  font-family: Arial, Helvetica, sans-serif;
  display: flex;
  place-content: center;
  min-height: 100vh;
}

.main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 20px;
}
.logo-home {
  width: 150px;
  height: auto;
}
.text-primary {
  color: #005b96;
}
.text-secondary {
  color: #03396c;
}
.text-info {
  color: #005b96;
  text-align: center;
}
