@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');
*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Outfit", serif;
}
.applycontainer{
    margin-top: 20px;
    margin-bottom: 20px;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
}
body {
    background-color: #10207A;
  }
.rdo{
    display: flex;
    gap: 10px;
}
  .formapply {
    width: 85vw;
    margin: 0 auto;
    background: #ebecef;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(20, 3, 117, 0.1);
  }
  
  h1 {
    text-align: center;
    color: #10207A;
  }
  
  form {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  fieldset {
    border: 1px solid #10207A;
    border-radius: 8px;
    padding: 15px;
  }
  
  legend {
    padding: 0 5px;
    font-weight: bold;
    color: #10207A;
  }
  
  label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #10207A;
  }
  
  input, select, textarea, button {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #10207A;
    border-radius: 5px;
    font-size: 14px;
    outline: none;
  }
  .jha:focus{
    border: 3px solid #10207A;
  }
  input[type="radio"], input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
  }
  
  button {
    background: #10207A;
    color: white;
    border: none;
    cursor: pointer;
    transition: 0.5s;
  }
  button:hover {
    background: #0056b3;
  }
  @media screen and (max-width:500px){
    .applycontainer{
      width: 100vw;
      display: flex;
      justify-content: center;
      align-items: center;
  }
  body {
      background-color: #10207A;
    }
  .rdo{
      display: flex;
      gap: 5px;
  }
    .formapply {
      width: 95vw;
      margin: 0 auto;
      background: #ebecef;
      padding: 20px;
      border-radius: 10px;
      box-shadow: 0 4px 6px rgba(20, 3, 117, 0.1);
    }
    
    h1 {
      text-align: center;
      color: #10207A;
      font-size: 17px;
    }
    
    form {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }
    
    fieldset {
      border: 1px solid #10207A;
      border-radius: 3px;
      padding: 8px;
    }
    
    legend {
      padding: 0 5px;
      font-weight: bold;
      font-size: 12px;
      color: #10207A;
    }
    
    label {
      display: block;
      margin-bottom: 3px;
      font-weight: bold;
      font-size: 10px;
      color: #10207A;
    }
    
    input, select, textarea, button {
      width: 100%;
      height: 20px;
      padding: 10px;
      margin-bottom: 15px;
      border: 1px solid #10207A;
      border-radius: 2px;
      font-size: 14px;
      outline: none;
    }
    .jha:focus{
      border: 2px solid #10207A;
    }
    input[type="radio"], input[type="checkbox"] {
      width: 10px;
      margin-right: 0px;
    }
    
    button {
      height: 30px;
      width: 100%;
      background: #10207A;
      font-size: 10px;
      color: white;
      border: none;
      cursor: pointer;
      transition: 0.5s;
    }
    button:hover {
      background: #0056b3;
    }
  }