ody {
    margin: 0;
    padding: 0;
  }
  
  .admission-container {
    width: 100%;
    max-width: 900px; /* Adjust as needed */
    margin: 0 auto;
    top: 150px;
    padding-bottom: 260px;
    line-height: 150%;
    display: flex;
    flex-direction: column;
    position: relative;
    border: 0 0 10px rgba(158, 56, 56, 0.1);
  }
  
  .section-heading p {
    color: #000;
    text-align: left;
    font-family: GothamMedium;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 500;
    line-height: 44px; /* 68.75% */
    letter-spacing: -1.28px;
    margin-bottom: 10px;
  }
  
  .heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 100px;
    text-align: center;
  }
  
  .heading p {
    color: #7f56d9;
    text-align: center;
    font-family: "cabin";
    font-size: 3rem;
    font-style: normal;
    font-weight: 500;
    line-height: 44px; /* 68.75% */
    letter-spacing: -1.28px;
    margin-bottom: 10px;
  }
  
  .admission-form {
    /* background-color: #f4f4f4; */
    padding: 20px;
    border-radius: 8px;
    border: 3px solid #d8d8d8;
  }
  
  .form-row {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 10px;
  }
  
  .form-cell {
    flex: 1;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  label {
    display: block;
    margin-bottom: 5px;
  }
  
  .admission-form label {
    color: #000;
    font-family: GothamBook;
    font-size: 1rem;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
  }
  
  input,
  select {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    box-sizing: border-box;
    border-radius: 5px;
    border: 2px solid #7f56d9;
  }
  
  .section-heading {
    padding-left: 10px;
  }
  
  .submit {
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }
  
  .admission-container button {
    border: none;
    cursor: pointer;
    width: 20%;
    /* display: inline-flex; */
    padding: 21px 36px;
    justify-content: center;
    align-items: center;
    gap: 28px;
    border-radius: 10px;
    background: #7f56d9;
    color: #fff;
    font-family: GothamMedium;
    font-size: 1rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.18px;
  }
  
  /* Media Query for smaller screens */
  @media (max-width: 600px) {
    .form-cell {
      flex: 100%;
    }
    .admission-container button {
      width: 50%;
    }
  }
  