/* eFormGuard Section */
.eformguard-section {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

/* Left column - Image and buttons */
.eformguard-left-column {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
    align-content: space-around;
    flex-wrap: wrap;
}

.eformguard-animated-img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Buttons */
.eformguard-btn {
    padding: 10px 15px !important;
    font-size: 0.9rem;
    border-radius: 6px;
    border: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.eformguard-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.eformguard-btn:active {
    transform: translateY(0);
}

/* Title */
.eformguard-title {
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
    color: white;
    padding: 5px 5px;
    border-radius: 6px;
    text-align: center;
}

.eformguard-title label {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Security image */
.security-image-container {
    background: white;
    border: 2px solid #dee2e6;
    border-radius: 6px;    
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.security-image {
    max-width: 100%;
    padding:5px;
    border-radius: 4px;
}

/* Input field */
.eformguard-input {
    border: 2px solid #ced4da;
    padding: 14px;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 2px;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-align: center;
}

.eformguard-input:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
    outline: none;
}

.eformguard-input::placeholder {
    color: #6c757d;
    letter-spacing: normal;
    font-weight: normal;
}

/* Submit button */
.form-control-submit-button {
    padding: 12px 24px;
    font-size: 1.1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.form-control-submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.3);
}

@media (max-width: 1399px) {
    .eformguard-left-column {
        width: 120% !important;
        transition: all 0.3s ease;
    }
}


@media (max-width: 1199px) {
    .eform-btn {
        padding: 0.79rem 0.55rem !important;
    }
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .prl-6 {
        padding-left: 6px;
        padding-right: 6px;
    }
    .eformguard-animated-img {
        max-width: 90% !important;
    }

    .eformguard-section {
        padding: 15px;
    }
    
    .eformguard-title {
        padding: 10px 12px;
    }
    
    .eformguard-title label {
        font-size: 0.95rem;
    }
    
    .security-image-container {
        padding: 12px;
    }
    
    .eformguard-input {
        padding: 12px;
        font-size: 1rem;
    }
}

@media (max-width: 767px) {
    .prl-6 {
        margin-top: -16px !important;
    }
    .eformguard-animated-img {
        min-width: 130px !important;
        max-height: 110px !important;
    }
}

@media (max-width: 768px) {
    .prl-6 {
        margin-top: -35px !important;
    }
    .eformguard-left-column {
        margin-bottom: 20px;
    }
    
    .eformguard-animated-img {
        max-width: 150px;
        margin: 0 auto 15px;
    }
    
    .eformguard-btn {
        padding: 8px 12px;
        font-size: 0.85rem;
    }
    
    .eformguard-title {
        padding: 8px 10px;
    }
    
    .security-image-container {
        padding: 10px;
    }
}

@media (max-width: 576px) {
    .eformguard-section {
        padding: 15px;
    }
    
    .eformguard-animated-img {
        max-width: 120px;
    }
    
    .eformguard-title label {
        font-size: 0.9rem;
    }
    
    .eformguard-input {
        padding: 10px;
        font-size: 0.95rem;
    }
    .eformguard-left-column {
        width: 100% !important;
    }
}
