﻿
/* FORM CARD */ .custom-form-card {
    border-radius: 16px;
    border: none;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    max-width: 900px;
    margin: auto;
}

/* HEADER */ .card-header {
    border-radius: 14px;
    backdrop-filter: blur(6px);
    background: linear-gradient(135deg, #ff7f50, #ff4500) !important;
    padding: 22px 15px !important;
    border: none !important;
    position: relative !important;
    overflow: hidden !important;
}

    .card-header::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 45%;
        width: 10%;
        height: 3px;
        background: rgba(255, 255, 255, 0.4);
        border-radius: 10px;
    }

/* SECTION TITLES */ .form-section {
    font-weight: 700;
    color: #ff4500;
    @* border-bottom: 2px solid #ff7f50;
    *@ padding-bottom: 6px;
    display: inline-block;
}


/* INPUTS */ .form-label {
    font-weight: 600;
}

.form-control,
.form-select {
    border-radius: 10px;
    border: 2px solid #eee;
    padding: 10px;
    transition: 0.2s ease;
    padding: 14px 12px;
}


    .form-control:focus,
    .form-select:focus {
        border-color: #ff5a2f;
        box-shadow: 0 0 0 3px rgba(255,90,40,0.15);
    }



/* BUTTON */ .submit-product-btn {
    background: linear-gradient(135deg,#ff7f50,#ff4500);
    border: none;
    padding: 10px 22px;
    border-radius: 10px;
    font-weight: 600;
    color: #fff;
    box-shadow: 0 6px 18px rgba(255,90,40,0.25);
    transition: 0.25s ease;
}



    .submit-product-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(255,90,40,0.35);
        color: #fff !important;
    }

