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

:root {
  --clr: white;
}

video {
  height: 100%;
  width: 100%;
  filter: brightness(90%);
  object-fit: cover;
  position: absolute;
}

.login-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 470px;
  padding: 40px;
  text-align: center;
  color: white;

  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(9px);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);

  box-shadow: 0 0 25px rgba(0, 0, 0, 0.6);
}

.login-box div:first-child {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.login-box div:nth-child(2) {
  height: fit-content;
  width: 100%;
}

.login-box div:nth-child(2) img {
  height: 91px;
  width: 170px;
}

.login-box div:nth-child(4) {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.login-box div:nth-child(4) a {
  color: #d5bf78;
  text-decoration: none;
}

.login-box .borders {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.login-box .borders .lb {
  height: 1px;
  width: 38%;
  border: 1px solid #d3d3d5;
}

.login-box .borders p {
  padding: 0 1px;
}

.login-box .borders .rb {
  height: 1px;
  width: 38%;
  border: 1px solid #d3d3d5;
}

.login-box .socials {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.login-box .socials .logins {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 6px 10px;
  text-align: center;
}

.login-box .socials .logins img {
  height: 25px;
  width: 25px;
}

.login-box h2 {
  margin-bottom: 25px;
  font-size: 26px;
  letter-spacing: 1px;
}

.login-box input {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;

  border: none;
  outline: none;

  border-radius: 8px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(1px);
  color: white;
  font-size: 14px;
}

.login-box input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.login-box button {
  width: 100%;
  padding: 9px 12px;

  border: none;
  border-radius: 8px;

  font-size: 16px;
  font-weight: bold;
  cursor: pointer;

  color: #d5bf78;
  background: rgba(255, 255, 255, 0.25);
}

.login-box button a {
  text-decoration: none;
  color: #d5bf78;
  cursor: pointer;
}

.login-box button input {
  cursor: pointer;
  display: none;
}

@media (max-width: 480px) {
  .login-box {
    width: 90%;
    padding: 20px 15px;
  }

  .login-box div:nth-child(2) img {
    height: 70px;
    width: 130px;
  }

  .login-box .socials {
    font-size: 15px;
    gap: 1px;
  }
}
