* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.login-wrapper {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-image: conic-gradient(rgba(0, 0, 0, 0.31) 0deg 90deg), var(--url-img);

  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  gap: 3rem;
  padding: 1rem;
}

.login-wrapper form,
.login-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}

.login-container {
  width: 500px;
  background-color: transparent;
  padding: 2rem;
  border-radius: 1rem;

  h1,
  p {
    align-self: center;
    color: #dadada;
  }

  p {
    font-size: 20px;
  }
}

.login-input-container {
  position: relative;
  width: 100%;
  height: 30px;
  margin: 1rem 0;
}

.login-input-container input {
  width: 100%;
  height: 100%;
  background: transparent;
  border: none;
  outline: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.59);
  color: rgba(255, 255, 255, 0.572);
  font-size: 1rem;
}

.login-input-container input:focus + label,
.login-input-container input:valid + label {
  top: -0.55rem;
  color: white;
}

.login-input-container label {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.628);
  pointer-events: none;
  transition: 0.5s;
}

.login-wrapper form button {
  max-width: 100%;
  height: 60px;
  background-color: rgba(25, 25, 25, 0.267);

  color: white;
  border-radius: 10px;
  border: 1px solid rgba(236, 236, 236, 0.535);
  font-size: 1.4rem;
  cursor: pointer;
  transition: 0.3s;

  &:hover {
    background-color: rgba(25, 25, 25, 0.545);
  }
}
@media only screen and (max-width: 850px) {
  .login-container {
    width: 100%;
  }
}
