body {
    background-color: #f2f2f2;
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    margin: 0;
  }
  
  h1 {
    color: #006233; /* Dark green */
    font-size: 3em;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px #ddd;
  }
  
  a {
    color: #006233;
    text-decoration: none;
    font-weight: bold;
    margin: 0 5px;
  }
  
  a:hover {
    text-decoration: underline;
  }
  
  /* Admin Login Button */
  a[href="admin/admin_login.php"] {
    display: inline-block;
    background-color: #008000; /* Darker green */
    color: white;
    padding: 15px 30px;
    border-radius: 5px;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.3s;
    font-size: 1.2em;
    margin-top: 20px;
    box-shadow: 2px 2px 4px #ddd;
  }
  
  a[href="admin/admin_login.php"]:hover {
    background-color: #006233;
    cursor: pointer;
  }
  
  /* Background Image */
  body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("path/to/your/starbucks/background.jpg"); /* Replace with your image path */
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.3;
    z-index: -1; /* Behind content */
  }

  body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
  }
  
  h1 {
    color: #333;
    margin-bottom: 20px;
  }
  
  form {
    background-color: #fff;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    width: 300px;
  }
  
  input[type="email"],
  input[type="password"] {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 4px;
  }
  
  button[type="submit"] {
    background-color: #4CAF50;
    color: white;
    padding: 12px 20px;
    margin: 10px 0;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
  }
  
  button[type="submit"]:hover {
    background-color: #45a049;
  }