/*!***************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/sass/_style.sass ***!
  \***************************************************************************************************************/
@font-face : {
  font-family: "Graphik";
  font-weight: 400;
  src: url(../js/../fonts/Graphik-Regular.329746577f94a4f1785e.otf) format("opentype");
}
html {
  padding: 0;
  margin: 0;
  font-size: 16px;
}

body {
  background-color: #ffffff;
  padding: 0;
  margin: 0;
  font-family: Arial, sans-serif;
  visibility: hidden;
}
body.loaded {
  visibility: visible;
}

.main {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  padding: 3rem 1rem 6rem 1rem;
  box-sizing: border-box;
}

.flag {
  display: block;
  width: 65%;
  max-width: 380px;
  margin: 0 auto;
}

.title {
  font-size: 1.64rem;
  text-align: center;
  margin: 2.4rem auto 1.8rem auto;
}

.paragraph {
  font-size: 0.9rem;
  line-height: 1.4;
  text-align: justify;
  margin: 0 auto 1rem auto;
}

.shirt {
  display: block;
  width: 100%;
  max-width: 15rem;
  margin: 2rem auto;
}

.link {
  text-decoration: none;
}

.networks {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.network {
  display: block;
  color: #000;
  text-decoration: none;
  width: 1.5rem;
  height: 1.5rem;
}
.network svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.footer {
  padding: 2rem 1rem;
  box-sizing: border-box;
}

.form__container {
  width: 100%;
  padding: 0.3rem 0;
}
.form__label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
}
.form__input {
  width: 100%;
  padding: 0.5rem;
  box-sizing: border-box;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 0.9rem;
}
.form__alert {
  background-color: transparent;
  color: red;
  display: block;
  padding: 0.2rem 0;
  font-size: 0.8rem;
}
.form .btn {
  display: block;
  cursor: pointer;
  appearance: none;
}
.form .btn--regular {
  font-size: 0.9rem;
  padding: 0.8rem 1.5rem;
  box-sizing: border-box;
}
.form .btn__default {
  background-color: #000;
  color: #fff;
  border: none;
  border-radius: 4px;
  text-align: center;
}

.loading {
  width: 100%;
  height: 100dvh;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 9999;
  display: none;
  justify-content: center;
  align-items: center;
}
.loading--active {
  display: flex;
}
.loading img {
  width: 6rem;
  height: 6rem;
  object-fit: contain;
  object-position: center;
  display: block;
}

.notification {
  max-width: 640px;
  margin: 0.5rem auto 0.5rem auto;
  display: none;
}
.notification--failed, .notification--success {
  display: block;
}
.notification__container {
  background-color: #fafafa;
  padding: 0.5rem;
  border-radius: 4px;
  border: 1px solid #f3f3f3;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
  position: relative;
  margin: 0 auto;
}
.notification__close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background-color: transparent;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
}
.notification__title {
  font-size: 1.2rem;
  margin: 0 auto 0.4rem auto;
}
.notification__message {
  font-size: 0.9rem;
  margin: 0 auto;
}
