* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: Inter, Helvetica, sans-serif;
}

html,
body,
main {
  height: 100%;
}

img {
  max-width: 100%;
}

#app_loading {
  height: 100%;
  width: 100%;
  display: grid;
  place-items: center;
}

.lds-ring {
  display: inline-block;
  position: relative;
  width: 70px;
  height: 70px;
}
.lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 64px;
  height: 64px;
  margin: 8px;
  border: 8px solid #205caa;
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #205caa transparent transparent transparent;
}
.lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}
.lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}
.lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}
@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.header-loading-loader {
  width: 100%;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.31), 0 3px 4px -2px rgba(0, 0, 0, 0.25);
}

.skeleton_logo {
  width: 120px;
  height: 50px;
}

.skeleton_profile {
  width: 50px;
  height: 50px;
  border-radius: 100px;
}

.form-loading-loader-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  width: 100%;
}

.skeleton_header {
  width: 170px;
  height: 40px;
  margin-bottom: 16px;
}

.skeleton_line {
  width: 300px;
  height: 12px;
  margin-bottom: 8px;
  border-radius: 4px;
}

.skeleton_button {
  width: 100%;
  height: 30px;
}

.skeleton {
  animation: skeleton-loading 1s linear infinite alternate;
}

@keyframes skeleton-loading {
  0% {
    background-color: hsl(200, 20%, 80%);
  }
  100% {
    background-color: hsl(200, 20%, 95%);
  }
}
