body {
    background: url('../img/indexbg.png') no-repeat;
    background-size: cover;
    height: 100vh;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial, sans-serif;
  }

  #login_box {
    width: 300px;
    height: auto;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
    text-align: center;
  }

  h2 {
    color: #ffffff;
    margin-top: 0;
    font-size: 28px;
  }

  .input_box {
    margin-top: 20px;
  }

  input {
    border: 0;
    width: 100%;
    font-size: 16px;
    color: #fff;
    background: transparent;
    border-bottom: 2px solid #fff;
    padding: 10px 0;
    outline: none;
    margin-top: 15px;
    transition: border-bottom 0.3s ease;
  }

  input::placeholder {
    color: #fff;
    opacity: 0.6;
  }

  input:focus {
    border-bottom: 2px solid #30cfd0;
  }

  button {
    margin-top: 10px;
    /* margin-bottom: 10px; */
    width: 100%;
    height: 40px;
    border-radius: 5px;
    border: 0;
    color: #fff;
    text-align: center;
    font-size: 16px;
    background-image: linear-gradient(to right, #30cfd0, #330867);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
  }

  button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }

  button:active {
    transform: translateY(1px);
    box-shadow: none;
  }

  a {
    color: #b94648;
    text-decoration: none;
    margin-top: 10px;
    display: block;
    transition: color 0.3s ease;
  }

  a:hover {
    color: #fff;
  }

