        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f4f4f4;
        }
        .gallery-container {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            padding: 20px;
            justify-items: center;
        }
        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
            width: 100%;
        }
        .gallery-item:hover {
            transform: scale(1.05);
        }
        .gallery-item img {
            display: block;
            width: 100%;
            height: auto;
        }
        .gallery-item .caption {
            position: absolute;
            bottom: 0;
            background: rgba(0, 0, 0, 0.7);
            color: #fff;
            width: 100%;
            text-align: center;
            padding: 10px;
            box-sizing: border-box;
            transition: opacity 0.3s ease;
            opacity: 0;
        }
        .gallery-item:hover .caption {
            opacity: 1;
        }

    .login-container {
      max-width: 400px;
      margin: 0 auto;
      padding: 20px;
      background-color: #f9f9f9;
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      text-align: center;
    }

    /* Style the heading */
    .login-container h2 {
      color: #333;
      margin-bottom: 20px;
      font-size: 24px;
    }

    /* Label styling */
    .login-container label {
      display: block;
      margin-bottom: 8px;
      color: #555;
      font-weight: bold;
      text-align: left;
    }

    /* Input styling */
    .login-container input[type="text"],
    .login-container input[type="email"] {
      width: 100%;
      padding: 10px;
      margin-bottom: 15px;
      border: 1px solid #ccc;
      border-radius: 4px;
      box-sizing: border-box;
    }

    /* Button styling */
    .login-container button {
      width: 100%;
      padding: 10px;
      background-color: #007bff;
      color: white;
      font-size: 16px;
      font-weight: bold;
      border: none;
      border-radius: 4px;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }

    /* Button hover effect */
    .login-container button:hover {
      background-color: #0056b3;
    }

    /* Additional text styling */
    .login-container .info-text {
      font-size: 12px;
      color: #555;
      margin-top: 30px;
      text-align: center;
    }