/* Global Reset */
body, html {
    margin: 0;
    padding: 0;
    font-family: "Noto Sans Tamil", sans-serif;
    scroll-behavior: smooth;
    background-color: #f8f9fa;
  }
  
  /* Centering container */
  .signup-container {
    padding: 20px;
  }
  
  /* Form Box */
  .form-box {
    max-width: 1500px;
    background-color: #fff;
    border-radius: 10px;
  }
  
  /* Heading */
  .section-title {
    font-family: "Karla Tamil Inclined", sans-serif;
    color: #f25c44;
    font-weight: bold;
    font-size: 22px;
    border-bottom: 2px solid #f25c44;
    display: inline-block;
    padding-bottom: 4px;
  }
  
  /* Labels */
  .form-label {
    font-family: "Noto Sans Tamil", sans-serif;
    font-weight: 500;
  }
  
  .id-label {
    color: #f25c44;
    font-weight: 600;
    margin-top: 15px;
    display: block;
  }
  
  /* Submit Button */
  .btn-submit {
    background-color: #4da6ff;
    color: #fff;
    font-weight: 600;
    border-radius: 20px;
    transition: background-color 0.3s ease;
  }
  
  .btn-submit:hover {
    background-color: #1e90ff;
  }
  
  /* Responsive Fixes */
  @media (max-width: 768px) {
    .section-title {
      font-size: 20px;
      text-align: center;
    }
  
    .form-box {
      padding: 20px;
    }
  
    .btn-submit {
      width: 100%;
      border-radius: 6px;
    }
  }
  