
* {
  margin: 0px;
  padding: 0px;
  font-family: "Poppins", sans-serif;
  box-sizing: border-box;
}

body {
  background: teal;
  display: flex;
  align-items: center;
  justify-content: center;
}
.container{
    background:white;
    width: 400px;
    border-radius: 5px;
    text-align: center;
    padding: 25px;

}

.form-group{
    text-align: start;
    margin: 20px 0px;
}
.form-group input{
    height: 50px;
    width: 100%;
    font-size: 15px;
    border-radius: 5px;
    outline: none;
    border: 1px solid black;
}

button{
    width: 100%;
    height: 45px;
    cursor: pointer;
    font-size: 16px;
    background: skyblue;
    border-radius: 30px;
    color: white;
    margin-bottom: 20px;
}
.otp-form{
    display: block;
    margin: 20px 0px;

}
.otp-form p{
    margin: 20px;
    color: green;
}

.otp-group{
    display: flex;
    gap: 30px;
    justify-content: center;
    margin: 20px;
}
.otp-group input{
    height: 50px;
    width: 50px;
    padding: 5px;
    font-size: 25px;
    text-align: center;
    border: none;
    border-bottom: 2px solid black;
}

input::-webkit-inner-spin-button,
input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0px;
}
img{
    height: 150px;
    margin: 15px;
}
button.disable{
   opacity: 50%;
    pointer-events: none;
}

.error-shake{
    animation: shake 0.2s ease-in-out 0s 2;
}

@keyframes shake {
    0%{
        margin-left: 0rem;
    }
    25%{
        margin-left: 0.5rem;
    }
    75%{
        margin-left: -0.5rem;
    }
    100%{
        margin-left: 0rem;}
    }