.form-wrapper {
    margin: auto;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
h2 {
    text-align: center;
    margin-bottom: 25px;
}
label {
    display: block;
    margin-top: 15px;
    font-weight: bold;
}
.gift_create_form input[type="text"],
.gift_create_form input[type="file"],
.gift_create_form input[type="number"],
.gift_create_form textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border-radius: 5px;
    border: 1px solid #ccc;
}
.drag-area {
    border: 2px dashed #ccc;
    text-align: center;
    padding: 30px;
    margin-top: 10px;
    border-radius: 10px;
    cursor: pointer;
    background: #f5f5f5;
}
.drag-area:hover {
    background-color: #eef;
}
#preview-img {
    margin-top: 10px;
    max-width: 100%;
    display: none;
}
.submit-btn {
    background-color: #28a745;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    margin-top: 20px;
    width: 100%;
    font-size: 16px;
    cursor: pointer;
}
.preview_title {
    text-align: center;
}
.preivew_img_area {
border: 2px dashed #ccc;
padding: 10px;
border-radius: 10px;
background: #f8f8f8;
max-width: 100%;
}

.preivew_img_wrap {
width: 100%;
height: 500px;
border: 1px solid #ddd;
border-radius: 8px;
overflow: hidden;
display: flex;
align-items: center;
justify-content: center;
background-color: #fefefe;
}
@media (max-width: 480px) {
.preivew_img_wrap{
    height: 350px;
}
}
.preivew_img_wrap img {
max-width: 100%;
max-height: 100%;
object-fit: contain;
display: block;
}