   body {
      font-family: sans-serif;
      background-color: #f2f2f2;
      margin: 0;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100vh;
    }

    .container {
      background-color: #fff;
      padding: 40px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
      max-width: 360px;
      width: 100%;
    }

    .logo {
      display: block;
      margin: 0 auto 20px;
      height: 24px;
    }

    h2 {
      font-size: 24px;
      font-weight: 400;
      margin-bottom: 10px;
      text-align: center;
    }

    p {
      font-size: 14px;
      color: #5f6368;
      text-align: center;
      margin-bottom: 30px;
    }

    input[type="email"] {
      width: 100%;
      padding: 14px;
      margin-bottom: 10px;
      border: 1px solid #dadce0;
      border-radius: 4px;
      font-size: 16px;
      box-sizing: border-box;
    }

    .link {
      display: block;
      color: #1a73e8;
      text-decoration: none;
      font-size: 14px;
      margin-bottom: 30px;
    }

    .actions {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    button {
      background-color: #1a73e8;
      color: white;
      border: none;
      padding: 10px 24px;
      border-radius: 4px;
      font-weight: 500;
      cursor: pointer;
    }

    .create {
      font-size: 14px;
      color: #1a73e8;
      text-decoration: none;
    }

    @media (max-width: 400px) {
      .container {
        padding: 20px;
      }
    }