* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    width: 100%;
    height: 100vh;
    background: url(gedung.jpg);
    backdrop-filter: blur(4px);
    background-size: cover;
    background-position: center;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  }
  
  .loginform {
    width: 95%;
	max-width: 400px;
    height: auto;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 70px 30px;
    border: 2px solid rgb(77, 163, 92);
    backdrop-filter: blur(2rem);
  }
  
  .loginform img {
    width: 60px;
    height: auto;
    position: absolute;
    top: 20px;
    left: calc(58% - 58px);
    
  }

  .container {
    width: 500px;
    border: 2px solid #ccc;
    padding: 30px;
    background: #fff;
    border-radius: 15px;
  }
  
  h2 {
    margin: 0;
    padding: 0;
    text-align: center;
    color: #fff;
    font-weight: 500;
  }

  p {
    margin: 0;
    padding: 0;
    text-align: center;
    color: #fff;
    font-weight: 200;
  }
  
  form {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  input[type="text"],
  input[type="password"] {
    width: 100%;
    height: 40px;
    padding: 10px;
    border: none;
    outline: none;
    background: transparent;
    color: #fff;
    font-size: 15px;
    border-bottom: 1px solid #fff;
  }

   
  input[type="submit"] {
    margin-top: 25px;
    border: none;
    outline: none;
    height: 40px;
    color: #fff;
    font-size: 18px;
    background: rgb(77, 163, 92);
    border-radius: 20px;
  }
  
  input[type="submit"]:hover {
    cursor: pointer;
    background: #00AEEE;
    color: black;
  }
  
  label {
    color: white;
    margin: 10px 0;
  }
  