/* Basic reset */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: Arial, sans-serif;
      background-color: #f0f2f5;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100vh;
    }

    .login-container {
      background-color: white;
      width: 360px;
      padding: 40px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      border-radius: 8px;
      text-align: center;
    }

    .login-container h2 {
      font-size: 24px;
      color: #1877f2;
      margin-bottom: 20px;
    }

    .login-container input {
      width: 100%;
      padding: 12px;
      margin: 8px 0;
      border: 1px solid #ccc;
      border-radius: 4px;
      font-size: 14px;
    }

    .login-container button {
      width: 100%;
      padding: 12px;
      background-color: #1877f2;
      border: none;
      color: white;
      font-size: 16px;
      cursor: pointer;
      border-radius: 4px;
    }

    .login-container button:hover {
      background-color: #165eab;
    }

    .login-container .forgot-password {
      text-decoration: none;
      color: #1877f2;
      font-size: 12px;
      display: block;
      margin-top: 12px;
    }

    .divider {
      margin: 16px 0;
      border-top: 1px solid #ddd;
    }

    .divider span {
      font-size: 14px;
      color: #777;
      margin: 0 10px;
    }

    .create-account {
      background-color: #42b72a;
      padding: 12px;
      color: white;
      border-radius: 4px;
      font-size: 16px;
      cursor: pointer;
      border: none;
    }

    .create-account:hover {
      background-color: #36a420;
    }

    .or-text {
      text-align: center;
      font-size: 14px;
      color: #888;
      margin-top: 20px;
    }

    .facebook-logo {
      width: 50px;
      margin-bottom: 10px;
    }