* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Orbitron', sans-serif;
    background: black;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-image: url("DAOSLOGO.JPG");
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
  }
  
  /* Container for form + info */
  .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    width: 90%;
    flex-wrap: wrap;
  }

  .center-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    max-width: 800px;
    padding: 30px;
    background: rgba(0, 0, 0, 0.7); /* semi-transparent */
    color: white;
    border: 2px solid white;
    border-radius: 10px;
    text-align: center;
    line-height: 1.6;
    font-size: 1rem;
  }
  .text-box {
    border: 2px solid white;
    padding: 20px;
    width: 400px;
    text-align: center;
    background: rgba(0, 0, 0, 0.6);
    line-height: 1.6;
    font-size: 0.95rem;
  }
  
  /* Form + Info boxes */
  .form-box, .info-box {
    border: 2px solid white;
    padding: 20px;
    width: 300px;
    text-align: center;
    background: rgba(0, 0, 0, 0.6); /* add contrast if background busy */
  }
  
  .form-box h2 {
    margin-bottom: 10px;
  }
  
  .form-box p {
    font-size: 0.9rem;
    margin-bottom: 20px;
  }
  
  form {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  input, textarea {
    padding: 10px;
    background: transparent;
    border: 1px solid white;
    color: white;
    font-family: 'Exo', sans-serif;
  }
  
  textarea {
    resize: none;
    height: 80px;
  }
  
  button {
    background: white;
    color: black;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s;
  }
  
  button:hover {
    background: gray;
    color: white;
  }
  
  /* Info section styling */
  .info-box h3 {
    margin-bottom: 10px;
  }
  
  .info-box h1 {
    letter-spacing: 5px;
    margin-bottom: 5px;
    white-space: nowrap; /* ensures DAOS stays on one line */
  }
  
  /* Logo positioning */
  .logo {
    margin-top: auto;   /* pushes logo to bottom */
    padding: 20px;
    text-align: center;
  }
  
  .logo img {
    max-width: 150px;
    height: auto;
  }
  
  /* RESPONSIVE DESIGN */
  
  /* Tablets */
  @media (max-width: 1024px) {
    .container {
      justify-content: center;
      gap: 30px;
    }
  
    .form-box, .info-box {
      width: 260px;
    }
  }
  
  /* Phones */
  @media (max-width: 600px) {
    body {
      padding: 20px;
      background-size: cover;
    }
  
    .container {
      flex-direction: column;
      align-items: center;
      gap: 20px;
    }
  
    .form-box, .info-box {
      width: 100%;
      max-width: 350px;
    }
  
    .info-box h1 {
      font-size: 1.6rem; /* DAOS still fits */
      white-space: nowrap;
    }
  
    .logo {
      margin-top: 40px; /* push down below everything */
    }
  }
  