body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 0;
}


body::before {
  content: "";
  position: fixed;
  inset: 0;

  background: url("../images/loginbg.jpg") center/cover no-repeat;

  z-index: -2;
}


body::after {
  content: "";
  position: fixed;
  inset: 0;

  background: rgba(0, 0, 0, 0.75);

  z-index: -1;
}

.login-form {
width: 90%;
    max-width: 450px;
  padding: 20px;
  border-radius: 10px;
  min-height: 550px;
  display: flex;
  flex-direction: column;
  align-items: center;
  
  background-color: rgba(0, 0, 0, 0.514);
  color: white;

  margin: 40px 0;
}

.login-form p{
    
    font-size: 40px;
    text-align: center;
}

#createaccount{
    font-size: 15px;
    margin-bottom: 0;
}
.login-form form{
    width: 100%;
    display: flex;
    text-align: center;
    flex-direction: column;
    align-items: center;
}

.login-form form label{
    width: 80%;
    font-size: 20px;
    margin-bottom: 5px;
    margin-top: 5px;
}

.login-form form input{
    width: 80%;
    padding: 10px 5px;
    margin-bottom: 20px;

    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(255,255,255,0.5);

    color: white;
    font-size: 16px;
    outline: none;
}

.btn-login-form {
  display: block;             
  width: 80%;
  padding: 12px;
  margin-top: 10px;
  margin-bottom: 15px;

  border: none;
  border-radius: 6px;

  background: rgba(255, 255, 255, 0.1);
  color: white;

  font-size: 16px;
  cursor: pointer;

  text-align: center;         
  text-decoration: none;      

  transition: all 0.3s ease;
}

.btn-login-form:hover {
  background: white;
  color: black;
  transform: translateY(-2px);
}

@media (max-width: 480px) {

    .login-form {
        padding: 15px;
    }

    .login-form p {
        font-size: 28px;
    }

    .login-form form label {
        font-size: 16px;
    }

    .login-form form input {
        width: 90%;
    }

    .btn-login-form {
        width: 90%;
    }

}