*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: bold;
}
body{
    background-color:#05304c;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.container{
    width: 350px;
    background-color: #fff;
    height: 450px;
    border-radius: 15px;
    text-align: center;
    padding: 25px;
}
.container h2{
    font-size: 20px;
    padding: 14px 0;
    font-weight: bold;
    font-family: sans-serif;
}
.form-group{
    margin: 20px 0;
    text-align:center;
}
.form-group input{
      width: 100%;
      height: 50px;
      padding: 0 20px;
      border: 1px solid #ccc;
      border-radius: 10px;
      outline: none;
}
input::placeholder{
    color:gray;
    transition: all 0.3s ease;
}
input:focus::placeholder{
    font-size: 10px;
    color: rgba(0,0,0,0.5);
    transform: translateY(-14px);
}
button{
    width: 100%;
    height: 40px;
    border-radius: 15px;
    background-color:#0099ff;
    color: #fff;
    font-size: bold;
    border: none;
    outline:none;
    cursor: pointer;
}
.otp-form{
    margin: 20px 0;
   display: block;
}
.otp-form p{
    margin: 20px;
    color: green ;
}
.otp-group{
    display: flex;
    gap: 30px;
    justify-content: center;
    margin: 20px 0;
}
.otp-group input{
    font-size: 25px;
    width: 50px;
    height: 50px;
    border: none;
    outline: none;
    border-bottom: 2px solid black;
    padding: 15px 15px;
}
input::-webkit-inner-spin-button,input::-webkit-outer-spin-button{
    -webkit-appearance: none;
    margin: 0;
}
img{
    height:200px;
    margin: 15px;
}
button.disable{
    opacity: 0.6;
    pointer-events: none;
    user-select: none;
}
.error-shake{
    animation: shake 0.3s ease-in-out;
}
@keyframes shake{
    0%{
        margin-left: 0rem;
    }
    25%{
        margin-left: 0.5rem;
    }
    50%{
        margin-left: -0.5rem;
    }
    100%{
        margin-left: 0rem;
    }
}
