     /*  auth css*/
     input[type="radio"]:checked+span {
            color: #110067;
            font-weight: bold;
        }
        .btn-choice:has(input[type="radio"]:checked) {
            background-color:#f7f7f7;
            color: #110067;
        }
        .btn-choice.is-invalid {
            border: 2px solid #dc3545 !important;
            background-color: #f8d7da !important;
        }
        .invalid-feedback {
            display: block;
            color: #dc3545;
            font-size: 0.875rem;
            margin-top: 0.25rem;
        }
        /* register */
            input[type="radio"]:checked+span {
        color: #110067;
        font-weight: bold;
    }
    .btn-choice:has(input[type="radio"]:checked) {
    background-color:rgb(223, 223, 223);
    color: #110067;
}
/* choice */
 .choice-card { transition: all 0.3s ease; cursor: pointer; border: 2px solid #e0e0e0; min-height: 200px; }
    .choice-card:hover { transform: translateY(-3px); border-color: #110067; }
    .choice-card.selected { border-color: #110067; box-shadow: 0 8px 25px rgba(17, 0, 103, 0.2); }
    .choice-title { font-size: 1.5rem; font-weight: 600; margin-bottom: 1rem; color: #110067; }
/* register patient */
.cancel-btn { border: none !important; outline: none !important; box-shadow: none !important; color: var(--vivid-blue); background: none; }
    .cancel-btn:focus { outline: none !important; box-shadow: none !important; }
    .metric-height.d-none, .imperial-height.d-none, .metric-weight.d-none, .imperial-weight.d-none { display: none !important; }
    .next-btn.disabled { opacity: 0.6; cursor: not-allowed; background-color: #6c757d !important; } 
    .file-error { border-left: 4px solid #dc3545; }
    .minimum-file-error { border-left: 4px solid #ffc107; }
    .alert { padding: 10px 15px; margin-bottom: 10px; border: 1px solid transparent; border-radius: 4px; }
    .alert-danger { color: #721c24; background-color: #f8d7da; border-color: #f5c6cb; }
    .alert-warning { color: #856404; background-color: #fff3cd; border-color: #ffeaa7; }
    .image-upload-container { transition: all 0.3s ease; border: 2px dashed #dee2e6; border-radius: 8px; padding: 20px; cursor: pointer; }
    .image-upload-container:hover { border-color: #007bff; background-color: #f8f9fa; }
    .image-upload-container.drag-over { border-color: #28a745; background-color: #d4edda; transform: scale(1.02); }
    .file-preview-item { transition: all 0.3s ease; }
    .file-preview-item:hover { transform: translateY(-2px); box-shadow: 0 4px 8px rgba(0,0,0,0.1); }
    .file-icon { font-size: 1.5rem; }
    .file-extension { font-size: 0.75rem; }
    .uploaded-file-item { transition: all 0.3s ease; }
    .uploaded-file-item:hover { transform: translateY(-1px); box-shadow: 0 2px 4px rgba(0,0,0,0.1); }
    .alert { border-radius: 8px; }
    .file-info-display { animation: fadeIn 0.3s ease-in; }
    @keyframes fadeIn { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }
/* register recommended products */
 .product-img {
        height: 200px;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        border-radius: 10px;
        background: #f8f9fa;
        height: 258px;

    }
    .product-img img {
        max-height: 100%;
        max-width: 100%;
        object-fit: contain;
    }
    .product-description {
        font-size: 14px;
        font-weight: 400;
        color: #666;
        margin-bottom: 10px;
    }
    .product-title {
        font-size: 18px;
        font-weight: 600;
        color: #2359D5;
    }
    .product-formula {
        color: #6c757d;
        font-size: 14px;
        font-weight: 400;
        margin-bottom: 10px;
    }

    .price-container {
        padding: 7px 16px;
        cursor: pointer;
        background: var(--lavander-blue);
        transition: all 0.4s ease;
        border-radius: 8px;
    }
    .price-dropdown {
        display: none;
        padding: 10px 16px;
        background-color: #fff;
        border-radius: 8px;
        margin-top: 5px;
    }
    .price-dropdown div {
        padding: 5px 0;
        border-top: 1px solid #eee;
    }

    .price-container i {
        font-size: 14px;
        color: #000;
    }

    .price-dropdown.open {
        display: block;
    }

    .fa-angle-down {
        transition: transform 0.3s ease;
    }

    .fa-rotate-180 {
        transform: rotate(180deg);
    }

    /* Meeting Section */
    .meeting-section {
        background: #f8f9fa;
        border-radius: 15px;
        padding: 30px;
        margin: 20px 0;
    }

    .meeting-info {
        background: white;
        border-radius: 10px;
        padding: 20px;
        margin-bottom: 20px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

    .info-item {
        display: flex;
        align-items: center;
        margin-bottom: 15px;
    }

    .info-item i {
        width: 30px;
        color: #2052D0;
        margin-right: 15px;
    }

    .calendly-link-btn {
        background: linear-gradient(135deg, #2052D0, #1a44b8);
        color: white;
        padding: 15px 30px;
        border-radius: 10px;
        text-decoration: none;
        font-weight: 600;
        font-size: 16px;
        display: inline-block;
        transition: all 0.3s ease;
        border: none;
        cursor: pointer;
    }

    .calendly-link-btn:hover {
        background: linear-gradient(135deg, #1a44b8, #2052D0);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(32, 82, 208, 0.3);
        color: white;
        text-decoration: none;
    }
    /* set password */
       input[type="radio"]:checked+span {
        color: #110067;
        font-weight: bold;
    }

    .btn-choice:has(input[type="radio"]:checked) {
        background-color:rgb(223, 223, 223);
        color: #110067;
    }

    /* Eye Button */
    .eye-btn {
        top: 50%;
        right: 0;
        border: none;
        background: none;
        color: #6c757d;
        z-index: 10;
        padding: 5px;
        cursor: pointer;
        transition: color 0.3s ease;
    }
    .login-card-parent {
    padding: 40px;
    justify-content: end;
}

.login-card {
    padding: 36px 28px;
    width: 500px;
}

.reset-card {
    padding: 36px 28px;
    width: 500px;
    height: max-content;
}

@media (max-width: 1280px) {
    .pass-reset-resp .fs-50 { font-size: 35px; }
}

@media (max-width: 767px) {
    .register-stepper-form-resp .step-1.stepOne .fs-30 { font-size: 25px; }
}


@media (max-width: 600px) {
        .login-card-parent {  padding: 18px; }
.login-card {  width: 424px;}
}

@media (max-width: 480px) {
        .login-card-parent { padding: 14px 0;}
          .login-card {  width: 369px;}
          .pass-reset-resp .fs-50 { font-size: 30px; }
          .register-stepper-form-resp .step-1.stepOne .fs-30 { font-size: 20px; }
}
@media (max-width: 414px) {
    .login-card {  width: 300px; }
    .login-card h6,.login-card .fs-14 { font-size: 12px;}
}

@media (max-width: 414px) {
    .pass-reset-resp .fs-50 { font-size: 25px; }
}

