﻿
.image-upload-section {
    border-right: 2px dashed #e3e6f0;
    padding-right: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.image-frame {
    width: 240px;
    height: 280px;
    border: 3px solid var(--primary-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 20px;
    position: relative;
    background-color: #f8f9fc;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

    .image-frame img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.camera-btn {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #4e73df;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

    .camera-btn:hover {
        background: var(--secondary-color);
        transform: scale(1.05);
    }

@media (max-width: 991.98px) {
    .image-upload-section {
        border-right: none;
        border-bottom: 2px dashed #e3e6f0;
        padding-right: 0;
        padding-bottom: 30px;
        margin-bottom: 30px;
    }
}




