.body1{
    background: linear-gradient(135deg, hsla(253, 87%, 50%, 1) 9%, hsla(197, 100%,60%,1)82%);
   min-height: 92vh;
   padding-top: 100px;
   position: relative;

}
*{
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

#contactdiv{

    border-radius: 20px 20px 20px 20px;
    width: 60%;
    margin: auto;
    padding: 50px;
    background-color: white;
   animation: slideup 1s ease;
    height: auto;
   }
   @keyframes slideup{
       0%{
           transform: translateY(900px);
       }
       100%{
           transform: translateY(0px);
       }
   }
   #container{
    display: flex;
    margin-bottom: 20px;
    align-items: center;
   color: black;
   
}

#container button{
    border: none;
    background-color: transparent;
    cursor: pointer;
    margin-right:10px ;
}
#form a{
    text-decoration: none;
    text-align: center;
    margin: auto;
    font-size: 15px;
    width: 100px;
    border: 1px solid rgb(65,17,237);
    background-color: rgb(65,17,237);
    color: white;
    border-radius: 10px;
    padding: 10px;
    cursor: pointer;
}
#form a:hover{
    background-color: white;
    color: rgb(65,17,237);
    border: 1px solid rgb(65,17,237);
}
.fa-arrow-left{
    font-size: 25px;
    color: black;

}
#form{
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}
#form input{
    padding: 15px;
    border-radius: 5px;
    border: 1px solid rgb(65,17,237);
    outline: none;
}
#form button{
    margin: auto;

    font-size: 15px;
    width: 100px;
    border: 1px solid rgb(65,17,237);
    background-color: rgb(65,17,237);
    color: white;
    border-radius: 10px;
    padding: 10px;
    cursor: pointer;
}
#form button:hover{
    background-color: white;
    color: rgb(65,17,237);
    border: 1px solid rgb(65,17,237);
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

.toast{
    padding: 10px 20px;
    font-weight: 700;
    border-radius: 15px;
    color: white;
    position: absolute;
     top: 10px;
    /* right: 0px;  */
    transform: translatex(-50%);
    left: 50%;
    z-index: 1000;
    animation: fadeInOut 1.2s ease-in-out;
}
.alert{
    background-color:#e23636;
    
}
.success{
    background-color: green;
    
}
.hiddentoast{
display: none;
}
.toast-close{
    color:white;
    background: transparent;
    border: none;
    cursor: pointer;
    font-weight: 900;
    font-size: 15px;
    margin-left: 10px;
}

@keyframes fadeInOut {
    0% {
      opacity: 0;
       top: -100%;
    }
    100%{
      opacity: 1;
       /* top: 10%; */
    }
  }
