body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
    background-color: #bbda3c;
}

.frame {
    width: 500px;
    height: 350px;
    background: #4a704a;
    clip-path: path('M 10 10 Q 50 0 90 10 Q 150 20 190 10 Q 250 0 290 10 V 190 Q 250 200 190 190 Q 150 180 90 190 Q 50 200 10 190 Z');
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.frame img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 5px;
    transition: transform 3s ease; /* Smooth transition for zoom effect */
    transform-origin: center center;
}

.frame img.zoom-in {
    transform: scale(1.2); /* Zoom in to 120% */
}

.frame img.zoom-out {
    transform: scale(1); /* Return to original size */
}

input {
    margin-top: 20px;
    padding: 10px;
    font-size: 16px;
}

body {
    background-color: #9cafc2;
}
.container {
    max-width: 800px;
    background-color:khaki;
}
.form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}
.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
}
.btn-primary:hover {
    background-color: #0056b3;
    border-color: #004085;
}