.resize-container {
    width: 100%;
    background: #f4f4f4;
    padding: 20px;
    box-sizing: border-box;
}

.resize-header {
    background: #7DF9FF;
    color: #000;
    padding: 15px;
    font-size: 22px;
    text-align: center;
    font-weight: bold;
}

.resize-body {
    margin-top: 20px;
    text-align: center;
}

.resize-inputs input {
    padding: 10px;
    margin: 10px;
    width: 120px;
}

#resize_btn {
    background: #7DF9FF;
    border: none;
    padding: 12px 25px;
    cursor: pointer;
    font-size: 16px;
    transition: 0.3s;
}

#resize_btn:hover {
    background: #5de0e6;
}

#preview img {
    margin-top: 20px;
    max-width: 100%;
    height: auto;
}

#download_link {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background: #7DF9FF;
    color: #000;
    text-decoration: none;
}

@media (max-width:768px){
    .resize-inputs input{
        width: 100%;
        margin-bottom:10px;
    }
}