body {
    font-family: Arial, sans-serif;
    background-color: #f0f2f5;
    display: flex;
    /* justify-content: center; */
    align-items: center;
    height: 100vh;
    width: 100vw;
  }
  .main-container {
    display: flex;
    /* width: 80%;
    max-width: 900px; */
    width: 100vw;
    margin-right: 60px;
  }
  
  .right {
    
    /* flex: 1; */
    margin-right: 0px;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
  }
  input, button {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    font-size: 16px;
  }
  .create {
    background-color: #42b72a;
    color: white;
    border: none;
  }
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  body {
      margin: 0;
      font-family: Arial, sans-serif;
      background-color: #f0f2f5;
    }
    
    .main-container {
      display: flex;
      justify-content: space-around;
      align-items: center;
      height: 100vh;
    }
    
    .left h1 {
      color: #1877f2;
      font-size: 60px;
      margin-bottom: 10px;
    }
    
    .left p {
      font-size: 24px;
      width: 350px;
    }
    
    .right {
      background-color: white;
      padding: 20px;
      border-radius: 10px;
      box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
      width: 350px;
    }
    
    .right input {
      display: block;
      width: 100%;
      padding: 14px;
      margin-bottom: 10px;
      border: 1px solid #ddd;
      border-radius: 6px;
    }
    
    .right button {
      width: 100%;
      padding: 14px;
      background-color: #1877f2;
      color: white;
      font-size: 16px;
      border: none;
      border-radius: 6px;
      cursor: pointer;
    }
    
    .right a {
      display: block;
      text-align: center;
      margin: 12px 0;
      color: #1877f2;
      text-decoration: none;
    }
    
    .create {
      background-color: #42b72a;
      margin-top: 10px;
    }
    