.form-container {
    background: white;
    padding: 20px;
    border-radius: 12px;
    max-width: 900px;
    width: 100%;
    display: grid;
    /* grid-template-columns: 2fr 1fr; */
    gap: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-header {
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 0px;
    grid-column: span 2;
}

.form-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
}

.form-group {
    position: relative;
}

.emp-form i {
    position: absolute;
    top: 12px;
    left: 12px;
    color: #777;
}

.emp-form input
{
    width: 100%;
    padding: 10px 12px 10px 30px;
    border: 1px solid #ccc;
    border-radius: 6px;
    outline: none;
    font-size: 14px;
}

.submit-btn {
    grid-column: span 2;
    background-color: #007bff;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    margin: 0 auto;
    width: fit-content;
}

.submit-btn:hover {
    background-color: #0056b3;
}

.image-section {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-section img {
    max-width: 100%;
    border-radius: 12px;
}

@media screen and (min-width: 1400px) {
    .modal {
        margin-top: 2%;
    }
}

@media screen and (max-width: 768px) {
    .modal {
        margin-top: 1%;
    }

    .form-container {
        display: block;
    }

    .form-container {
        grid-template-columns: 1fr;
    }

    .form-section {
        grid-template-columns: 1fr;
    }

    .submit-btn {
        grid-column: span 1;
    }

    .image-section {
      display: none;
    }
    
}









