* {
    margin: 0;
    padding: 0;
    font-family: Outfit;
    box-sizing: border-box;
}

.body {
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(135deg, #153677, #4e085f);
    padding: 10px;
}
.bunk-classes {
    width: 90%;
    max-width: 540px;
    background: white;
    margin: 100px auto 20px;
    padding: 40px 30px 70px;
    border-radius: 30px;
}
.title h1{
    font-size: 3rem;
    text-align: center;
    background: linear-gradient(90deg, rgba(2,0,36,1) 0%, rgba(9,9,121,1) 35%, rgba(0,212,255,1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.input-txt p{
    margin-top: 30px;
    font-size: 20px;
}
.input-txt .txt {
    height: 50px;
    border: none;
    outline: none;
    border-radius: none;
    border-radius: 40px;
    color:  #626262;
    background:  #fefae0;
    font-size: 18px;
    margin-top: 20px;
    width: 100%;
    text-align: start;
    padding: 0px 0px 5px 5px;
}
.btn-title {
    font-size: 20px;
    margin-top: 10px;
}
.per-btn {
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    margin-top: 30px;
  }
  .btn {
    border: none;
    outline: none;
    padding: 16px 16px;
    background:  #03045e;
    color:  #fff;
    font-size: 20px;
    border-radius: 20px;
    cursor: pointer;
  } 
  .btn:active  {
    background: black;
    color: white;
  }
  .select {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 50px;
  }
  .select p{
     font-size: 20px;
  }
  .select select {
    font-size: 20px;
    border-radius: 5px;
    padding: 10px;
  }
  .submit-btn {
    font-size: 18px;
    margin-top: 15px;
    display: flex;
    justify-content: center;
}
.sub-btn  {
    width: 10rem;
    font-size: 20px;
    border-radius: 20px;
    margin-left: 30px;
    background:  #3a0ca3;
    color:  #fff;
    padding: 16px 50px;   
}
.sub-btn:hover {
    background: blue;
  }
.result p {
    font-size: 20px;
    margin-top: 10px;
}
 @media (max-width :600px) {
    .body {
        width: 100%;
    }
    .per-btn {
      gap: 4px;
    }
 }