*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body{
background: rgb(61, 162, 115)

}
.container{
    width: 400px;
    padding: 25px 35px;
    position: absolute;
    top: 50%;
    left: 50%;
    position: absolute;
    transform: translate(-50% ,-50%);
    background: linear-gradient(20deg,red ,yellow);
   
    border-radius: 10px;
   
}
.container p{
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;



}
.container input{
    width: 100%;
    height: 50px;
    border: 1px solid #054298;
    outline: 0;
    padding: 10px;
    margin: 10px 0 21px;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 600;
}
.container button{
    width: 100%;
    height: 50px;
    background: linear-gradient(120deg ,rgb(143, 177, 28),rgb(195, 6, 198));
    font-weight: 600;
    font-size: 17px;
    color: rgb(1, 1, 1);
    outline: 0;
    border-radius: 8px;
    cursor: pointer;
    margin: 20px 0;

}
.a{
   margin-left: 100px ;
    display: flex;
    align-items: center;
    font-size: 20px;
    color: #fff;

}

#imgBox{
    width: 199px;
    border-radius: 5px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 1s;
}
#imgBox img{
    width: 100%;
    padding: 10px;

}
#imgBox ,.show-img{
  max-height: 300px;
  margin: 10px auto;

}
.error{
    animation: shake 0.1s linear 10
}
@keyframes shake{
    0%{
        transform: translateX(0px);
    }
        25%{
        transform: translateX(-2px);
    }
        50%{
        transform: translateX(0);
    }
        75%{
        transform: translateX(2px);
    }
       100%{
        transform: translateX(0);
    }

}