*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
body{
    background: #484449;
}
.container{
    max-width: 400px;
    width: 100%;
    background: #fff;
    padding: 25px 35px;
    border-radius: 10px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.container p{
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
}
.container input{
    width: 100%;
    height: 50px;
    padding: 10px 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    outline: none;
    margin: 10px 0 20px ;
}
.container button{
    width: 100%;
    height: 50px;
    border: none;
    outline: none;
    background: #333;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}
#imgBox{
    width: 100%;
    border-radius: 5px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s;
}
#imgBox img{
    width: 100%;
    padding: 10px ;
}
#imgBox.show-img{
    max-height: 300px;
    margin: 10px auto;
    border: 1px solid #ccc;
}
.error{
    animation: shake 0.2s linear 10;
}
@keyframes shake{
    0%{
        transform: translateX(0);
    }
    25%{
        transform: translateX(-3px);
    }
    50%{
        transform: translateX(0px);
    }
    75%{
        transform: translateX(3px);
    }
    100%{
        transform: translateX(0);
    }
}