/* General page setup */
dody-adoption {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #f9fafb;
    margin: 0;
    padding: 40px;
    color: #1f2937;
  }
  
  /* Top note section */
  .note {
    font-size: 14px;
    line-height: 1.6;
    color: #374151;
    margin-bottom: 30px;
  }
  
  /* Heading */
  h1 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 25px;
    color: #0f172a;
  }
  
  /* Labels */
  label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #111827;
  }
  
  /* Inputs + Textarea */
  input, textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 15px;
    background: #f9fafb;
    transition: border-color 0.2s ease, background 0.2s ease;
  }
  
  input:focus, textarea:focus {
    outline: none;
    border-color: #2563eb;
    background: #fff;
  }
  
  /* Layout rows */
  .row {
    display: flex;
    justify-content: space-between;
    gap: 20px; /* space between the inputs */
    margin-bottom: 30px;
  }

  .row_two {
    display: flexbox;
    /* justify-content: space-between; */
    gap: 20px; /* space between the inputs */
    margin-bottom: 30px;
  }
  
  input, textarea {
    width: 100%;
    box-sizing: border-box;
  }
  
  .full-width {
    width: 100%;
  }
  
  .col {
    flex: 1; /* equal width */
  }
  
  /* Inputs inside columns */
  .col input {
    width: 100%;
    box-sizing: border-box; /* makes padding/borders not overflow */
  }
  
  /* Textarea spacing */
  textarea {
    margin-top: 10px;
    resize: vertical;
  }
  
  /* Button */
  button {
    margin-top: 25px;
    background: #2563eb;
    color: #fff;
    padding: 14px 22px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s ease;
  }
  
  button:hover {
    background: #1d4ed8;
  }
  
