body {
  font-family: "Roboto", Arial, sans-serif;
  background: #040404;
  display: flex;
  place-content: space-between;
  place-items: center;
  gap: 20px;
  margin: 0;
}

.left-arrow-graphics {
  height: 336px;
}

.right-arrow-graphics {
  transform: rotate(180deg);
  height: 336px;
}

.left-arrow-graphics img,
.right-arrow-graphics img {
  width: 100%;
  height: 100%;
}

.container {
  display: flex;
  flex-direction: column;
  width: 300px;
  min-width: 300px;
  padding: 50px;
  color: #fff;
  background: rgb(30 144 255 / 15%);
  border-radius: 20px;
  z-index: 1;
}

.container h1 {
  margin: 0 0 28px 0;
  text-align: center;
  font-weight: 600;
}

.error-message {
  font-size: 22px !important;
  margin: 0 !important;
  padding: 0 !important;
}

.container form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 0;
}

#userName {
  background: rgb(61, 61, 61);
  color: rgb(255, 255, 255);
  text-align: center;
  font-size: 15px;
  font-family: "Roboto", Arial, sans-serif;
  line-height: 20px;
  font-weight: 400;
  letter-spacing: 0px;
  padding: 10px 16px;
  border-radius: 6px;
  border: 0px;
  height: 45px;
  box-sizing: border-box;
  width: 100%;
}

#userName:focus {
  outline: 0;
  box-shadow: rgb(30, 144, 255) 0px 0px 0px 2px;
}

#userName::placeholder {
  color: #aaa;
}

.submit-button {
  font-family: "Roboto", Arial, sans-serif;
  font-size: 15px;
  line-height: 24px;
  font-weight: 600;
  letter-spacing: 0px;
  border-radius: 6px;
  box-sizing: border-box;
  background-color: rgb(30, 144, 255);
  color: rgb(255, 255, 255);
  cursor: pointer;
  display: inline-block;
  padding: 7px 16px;
  position: relative;
  text-align: center;
  width: 100%;
  height: 45px;
  border: 0px;
}

.container span {
  color: rgb(248, 174, 26);
  padding: 0 4px;
  font-size: 11px;
  margin: 34px 0 0 0;
  text-align: justify;
}

.footer-powered-by {
  color: #fff;
  position: fixed;
  bottom: 10px;
  font-size: 12px;
  font-weight: 400;
  left: 50%;
  transform: translateX(-50%);
}

.footer-powered-by a {
  font-weight: 600;
  text-decoration: none;
  color: rgb(30, 144, 255);
}

.client-logo-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.client-logo {
  height: 48px;
  object-fit: cover;
}

.source-name {
  margin: 0;
  margin-bottom: 16px;
  font-size: 16px;
  text-align: center;
}

@media screen and (max-width: 500px) {
  .container {
    padding: 40px 20px;
  }
}

@media screen and (max-width: 767px) {
  body {
    place-content: center;
  }

  .left-arrow-graphics {
    display: none;
  }

  .right-arrow-graphics {
    display: none;
  }
}
