/* Updated CSS for JBG Agreement Sender App */

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background-color: #f2a65a;
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: start;
    height: 100vh;
  }
  
  .container {
    width: 100%;
    max-width: 500px;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    margin-top: 30px;
  }

  .division {
    background-color: #fff;
    padding: 15px; /* Reduced padding */
    margin: 10px 0;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 90%; /* Reduced width */
    margin: 10px auto; /* Centered within container */
  }

  .division-header {
    font-size: 1.2em;
    margin-bottom: 08px; /* Reduced margin */
    color: #333;
  }
  
  .division-subheader {
    font-size: 0.9em;
    margin-bottom: 15px;
    color: #666;
  }

  .test-division {
    background-color: #ffe6e6; /* Light pink background */
  }
  .live-division {
    background-color: #ccffcc;
  }
  
  h1 {
    text-align: center;
    color: #1a1a1a;
    font-size: 2em;
    margin-bottom: 20px;
    font-weight: bold;
  }
  
  form {
    width: 100%;
  }
  
  .section {
    margin-bottom: 30px;
  }
  
  .section h2 {
    font-size: 1.5em;
    color: #333;
    margin-bottom: 15px;
  }
  
  label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #1a1a1a;
    font-size: 1em;
  }
  
  input, select {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #dddddd;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 1em;
  }
  
  select {
    font-size: 1.2em;
    padding: 12px;
  }
  
  button {
    width: 100%;
    padding: 12px;
    background-color: #e67e22;
    border: none;
    border-radius: 5px;
    color: #ffffff;
    font-size: 1.2em;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  button:hover {
    background-color: #d35400;
  }

  .center-text {
    text-align: center;
  }
  
  @media (max-width: 600px) {
    .container {
      padding: 20px;
    }
  
    h1 {
      font-size: 1.5em;
    }
  
    button {
      padding: 10px;
      font-size: 1em;
    }
  }
  