*,*::before,*::after {
  box-sizing: border-box;
}
body{
    font-family: sans-serif;
    margin: 0;
    min-height: 100vh;
  
}

.form-container , .info-container{
  
    display: flex;
    justify-content: center;
    /* align-items: flex-start; */
    /* min-height: 100%; */
    padding: 20px;
    box-sizing: border-box;


}
.admission-form{
    width: 100%;
    max-width: 1150px;
    border: 1px solid #ccc;
    margin: 50px auto;
    padding: 20px 20px;
      box-sizing: border-box;

   
}
.admission-form:hover{
    box-shadow: 0 0 10px #22C55E;
    transition: box-shadow 0.3s ease-in-out;
}
.admission-form h1{
    text-align: center;
    color: #22C55E;
    font-size: 28px;
    font-weight: bold;
}
.admission-form label{
    display: inline-block;
    margin: 10px 0px;
    font-size: 18px;
}
.admission-form input , .admission-form select{
    width: 100%;
    padding: 10px ;
    font-size: 18px;
    border:1px solid #ccc;
    box-sizing: border-box;
}
.admission-form input:focus, .admission-form select:focus{
    outline: none;
    border-color: #22C55E;
}

.admission-form button{
    display: flex;
    justify-self: center;
    padding: 10px 40px;
    margin: 10px;
    font-size: 16px;
    background-color: #22C55E;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
.admission-form button:hover{
    background-color: transparent;
    border: #22C55E 1px solid;
    color: #22C55E;
    box-sizing: border-box;
    transition: background-color 0.3s ease-in-out;
}

@media screen and (max-width: 600px) {
  .admission-form button {
    width: 100%;
    justify-content: center; 
    
  }
}
