body{
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
}
.signupForm{
    display: flex;
    justify-content: center;
    height: 100vh;
    align-items: center;
}
.form {
    background-color: #ffffff;
    width: 400px;
    border-radius: 18px;
    padding: 50px 60px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}
.title {
    font-size: 250%;
    margin-bottom: 50px;
}
.inputContainer {
    position: relative;
    height: 45px;
    width: 90%;
    margin-bottom: 17px;
}
.input {
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    border: 1px solid #dadce0;
    border-radius: 7px;
    font-size: 16px;
    padding: 0 20px;
    outline: none;
    background: none;
    z-index: 1;
}
::placeholder {
    color: transparent;
}
.label {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 0 4px;
    background-color: rgba(255, 255, 255, 0);
    color: #dadce0;
    font-size: 16px;
    transition: 0.2s;
    z-index: 0;
}
.input:focus + .label {
    top: -8px;
    left: 3px;
    background-color: #ffffff; 
    z-index: 10;
    font-size: 14px;
    font-weight: 600;
    color: purple;
}
.input {
    border: 2px solid #dadce0; 
    transition: border-color 0.2s 0.2s ease; 
}
  
.input:focus {
    border-color: purple; 
}
.input:not(:placeholder-shown)+.label{
    top: -8px;
    left: 3px;
    z-index: 10;
    font-size: 14px;
    font-weight: 600;
    background-color: #ffffff; 
}
.subBtn{
    display: block;
    padding: 15px 30px;
    border: none;
    background-color: purple;
    border-radius: 10px;
    color: #dadce0;
    margin-left: auto;
    cursor: pointer;
    margin-top: 40px;
    font-size: medium;
    transition: transform 0.2s ease;
}
.subBtn:hover {
    animation: heartbeat 1s infinite; 
    animation-delay: 1s;
    background-color: #9867c5;
    transform:scale(1.2)

}
@keyframes heartbeat {
    0% {
      transform: scale(1.2); 
    }
    25% {
      transform: scale(1.3); 
    }
    50% {
      transform: scale(1.2);
    }
    75% {
      transform: scale(1.3); 
    }
    100% {
      transform: scale(1.2); 
    }
  }
  