@import url("https://fonts.googleapis.com/css2?family=Michroma&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  height: 100vh;
}

.auth-container {
  background-color: black;
  color: #fff;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.auth-loading-page {
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(
    135deg,
    #1cb5e0 0%,
    #000851 100%
  );
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  justify-content: center;
  color: #191654;
}

#svg {
  height: 200px;
  width: 200px;
  stroke: white;
  fill-opacity: 0;
  stroke-width: 1px;
  stroke-dasharray: 8500;
  animation: draw 6s ease;
}

#svg path { stroke: white; }
#svg path:nth-child(5) { stroke: #ff3b3b; }

@keyframes draw {
  0% {
    stroke-dashoffset: 8500;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

.auth-name-container {
  height: 40px;
  overflow: hidden;
  font-family: "Michroma", sans-serif;
}

.auth-logo-name {
  color: #fff;
  font-size: 20px;
  letter-spacing: 10px;
  text-transform: uppercase;
  /* margin-left: 20px; */
  font-weight: bolder;
}

.logo-svg {
  width: 160px;         /* подстрой под свой дизайн */
  height: auto;
  color: #ff2f;          /* цвет линий (currentColor) */
  overflow: visible;
}
