body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: url("../login_image/imaginee-transformed.png") no-repeat center center fixed;
    background-size: cover;
    margin: 0;
    height: 100vh;
    font-family: Arial, sans-serif;
  }
  .header, .footer {
    width: 100%;
    text-align: center;
    color: white;
    padding: 10px 0;
  }
  
  .content {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    padding: 20px;
    width: 90%;
    max-width: 400px;
    color: white;
    margin: 20px;
  }
  
  .content h1 {
    font-size: 30px;
    margin-bottom: 20px;
  }
  
  input[type=text], input[type=password] {
    width: 100%;
    padding: 14px 20px;
    margin: 8px 0;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    background: transparent;
    color: white;
  }
  
  button {
    background-color: #f6f6f6;
    width: 100%;
    padding: 10px;
    border-radius: 20px;
    border: none;
    cursor: pointer;
    margin-top: 20px;
  }
  
  button:hover {
    background-color: #ddd;
  }
  
  #input_login::placeholder {
    color: #ffffff;
  }
  
  .login_div {
    width: 100%;
  }
  
  .remember_section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    font-size: 14px;
    margin-top: 10px;
  }
  
  .Remember {
    margin-right: 5px;
  }
  
  .a {
    color: #ffffff;
    margin-left: 10px; 
  }
  
  .b {
    color: aqua;
  }
  