*,
*::after,
*::before {
  box-sizing: border-box;
}

body {
  background-color: #191919;
  color: #fff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

.logo {
  display: block;
  margin: auto;
  max-width: 120px;
}

.auth-container {
  margin: auto;
  margin-top: 10px;
  font-size: 1.1rem;
  background: #474747;
  padding: 20px;
  border-radius: 8px;
  max-width: 600px;
}

.auth-container h1 {
  font-size: 2.5rem;
  font-weight: bold;
  position: relative;
  text-align: center;
}

.auth-container h1::after {
  content: "";
  display: block;
  width: 50%;
  height: 5px;
  background: #ff4d64;
  margin: 10px auto;
}

.auth-container input {
  display: block;
  margin: 7px 0;
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #ffffff;
  border-radius: 6px;
  background: none;
  color: #fff;
  padding: 10px;
  font-size: 1.1rem;
}

.auth-container input:focus {
  outline: none;
}

.auth-btn {
  background: #ff4d64;
  border-radius: 6px;
  width: 100%;
  padding: 10px;
  color: #fff;
  cursor: pointer;
  outline: none;
  border: none;
  font-size: 1.1rem;
  transition: background 100ms ease-in-out;
}

.auth-animated-btn:hover {
  background: #ee485e;
}

.error-input {
  border: 1px solid #ff4d64 !important;
  animation: blink 0.3s 1;
}

.error {
  color: #ff4d64;
  font-size: 16px !important;
  margin: 0 0 20px 0;
  text-align: left !important;
}

.auth-container p {
  text-align: center;
  font-size: 1.1rem;
  font-weight: normal;
}

.auth-container a {
  color: rgba(255, 77, 100);
  text-decoration: none;
}

.google-btn {
  background: #fff;
  border-radius: 6px;
  width: 100%;
  padding: 10px;
  color: #000;
  cursor: pointer;
  outline: none;
  border: none;
  font-size: 1.1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}

.input-grp {
  position: relative;
}
.input-grp span {
  position: absolute;
  right: 10px;
  top: 10px;
}

.input-grp span svg {
  color: #fff;
  width: 15px;
  height: 15px;
}

.input-grp input {
  width: 100%;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px #474747 inset !important;
  -webkit-text-fill-color: #fff !important;
}

@keyframes blink {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  75% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
