/* General page styling */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(to right, #e0eafc, #cfdef3);
    margin: 0;
    padding: 40px;
    color: #2c3e50;
  }
  
  /* Center container */
  .container {
    max-width: 1000px;
    margin: auto;
    background: white;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    padding: 40px;
  }
  
  /* Title */
  h1 {
    text-align: center;
    color: #2f3640;
    font-size: 28px;
    margin-bottom: 20px;
  }
  
  /* Form layout */
  .form-wrapper {
    display: flex;
    gap: 40px;
    margin-top: 30px;
    flex-wrap: wrap;
  }
  
  .form-left,
  .form-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  /* Labels */
  label {
    font-weight: 600;
    margin-bottom: 5px;
  }
  
  /* Inputs and Selects */
  input,
  select,
  textarea {
    padding: 12px 15px;
    border-radius: 12px;
    border: 1px solid #dcdde1;
    font-size: 15px;
    background-color: #f9f9f9;
    transition: all 0.3s ease;
    box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.05);
  }
  
  input:focus,
  select:focus,
  textarea:focus {
    outline: none;
    border-color: #6c5ce7;
    box-shadow: 0 0 8px rgba(108, 92, 231, 0.3);
    background-color: #fff;
  }
  
  /* Description box */
  textarea {
    min-height: 120px;
    resize: vertical;
  }

  .button-container {
    text-align: center;
    margin-top: 30px;
  }
  
  #generateBtn {
    background: linear-gradient(135deg, #6c5ce7, #a29bfe);
    border: none;
    color: white;
    font-size: 16px;
    padding: 14px 30px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(108, 92, 231, 0.3);
  }
  
  #generateBtn:hover {
    background: linear-gradient(135deg, #5e50e6, #988cfb);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(108, 92, 231, 0.4);
  }
  

  input[readonly] {
    background-color: #f0f2f5;
    color: #555;
    cursor: not-allowed;
  }

  @media (max-width: 768px) {
    .form-wrapper {
      flex-direction: column;
    }
  
    .form-left,
    .form-right {
      width: 100%;
    }
  
    .button-container {
      text-align: center;
      margin-top: 20px;
    }
  
    #generateBtn {
      width: 100%;
      max-width: 300px;
    }
  }
