/* RESET BÁSICO */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* MELHOR RENDERIZAÇÃO */
html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

/* BODY BASE */
body {
  min-height: 100vh;
  line-height: 1.5;
  font-family: Arial, Helvetica, sans-serif;
  text-rendering: optimizeLegibility;
}

/* IMAGENS RESPONSIVAS */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

/* FORM ELEMENTS */
input,
button,
textarea,
select {
  font: inherit;
}

/* LINKS */
a {
  text-decoration: none;
  color: inherit;
}

/* LISTAS */
ul,
ol {
  list-style: none;
}

/* //////////////////////////////////////// */

body {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: Arial, Helvetica, sans-serif;
  position: relative;
  overflow-x: hidden;
}

/* FUNDO COM IMAGEM DESFOCADA */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("https://png.pngtree.com/background/20210716/original/pngtree-blue-flowers-mobile-phone-wallpaper-picture-image_1353519.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}

.main-container {
  display: flex;
  flex-direction: column;
  -ms-flex-align: center;
  -ms-flex-align: center;
}
