 .custom-register {
        background: linear-gradient(to bottom, #f0f4fa, #ffffff);
        padding: 40px;
        border-radius: 20px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
        max-width: 100%;
        width: 100%;
    }

    .form-label {
        font-weight: 500;
        margin-bottom: 4px;
        color: #333;
    }

    .form-control {
        border-radius: 12px;
        border: 1px solid #ccc;
        padding: 12px 14px;
        font-size: 15px;
        background-color: #f9f9f9;
    }

   .form-control:focus {
    border: 2px solid transparent; /* allow gradient border */
    background: 
        linear-gradient(#fff, #fff) padding-box, /* white fill */
        conic-gradient(from 160deg, #22d3ee, #4ade80, #a855f7, #22d3ee) border-box; /* gradient border */
    border-radius: 12px; /* same as your .form-control */
    outline: none;
    box-shadow: none; /* remove default focus glow */
}



    .otp-group {
        display: flex;
        gap: 10px;
        align-items: center;
    }

    .otp-group input {
        flex: 1;
    }

    .otp-group button {
    padding: 10px 16px;
    border-radius: 10px;
    border: 2px solid transparent; /* allow gradient border */
    background: 
        linear-gradient(#fff, #fff) padding-box, /* white fill */
        conic-gradient(from 160deg, #22d3ee, #4ade80, #a855f7, #22d3ee) border-box; /* gradient border */
    color: #000; /* black text */
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.otp-group button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

    .register-btn {
    width: 100%;
    padding: 10px;
    border-radius: 12px;
    border: none;
    background: linear-gradient(
  to right,
  #F5FCE0,
  #E0EBFF,
  #EDE4FD,
  #F8E9F1
);

    color: #000;
    font-weight: bold;
    font-size: 20px;
    cursor: pointer;
}


    .have-account {
        margin-top: 18px;
        text-align: center;
    }

    .have-account a {
        color: #007bff;
        font-weight: 500;
    }

   .bg-container1 {
    background: linear-gradient(to bottom right, #99CAE6, #99F3D1, #EDDDC9);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
 

    @media (max-width: 991px) {
        .custom-register {
            padding: 24px 16px;
            margin: 12px;
        }
    }
    
     .settings-page {
background:  linear-gradient(to right, #bedef0, #9ebdb1, #e7e2db);         padding: 8px;
        font-family: 'Poppins', sans-serif;
    }

    .settings-card {
     background: linear-gradient(to bottom, #ffffffff, #ffffffff);        
     border-radius: 12px;
        padding: 20px;
        margin: 0 8px;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
        
    }

    .profile-img {
        width: 72px;
        height: 72px;
        border-radius: 50%;
        object-fit: cover;
        border: 3px solid white;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    }

    .tag {
        font-size: 13px;
        padding: 4px 12px;
        border: 1px solid #ccc;
        border-radius: 16px;
        background: white;
        margin: 0 4px;
        display: inline-flex;
        align-items: center;
    }

    .tag i {
        margin-right: 4px;
    }

    .setting-block {
        background: #fff;
        border-radius: 12px;
        padding: 12px 18px;
        margin-top: 16px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border: 1px solid #eee;
    }

    .setting-block i {
        font-size: 18px;
        margin-right: 12px;
    }

    .logout-btn {
        width: 100%;
        margin-top: 100px;
        background: linear-gradient(to right, #6dd5ed, #c9f2d1, #fbd4c9);
        color: white;
        border: none;
        padding: 12px;
        border-radius: 24px;
        font-weight: 500;
        text-align: center;
    }

    .bottom-menu {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: white;
        padding: 10px;
        border-top: 1px solid #ddd;
        border-radius: 16px 16px 0 0;
        text-align: center;
        font-size: 14px;
        display: none;
    }

    .bottom-menu span {
        margin: 0 8px;
    }

    .verification-status {
        font-size: 14px;
        color: red;
        font-weight: 500;
    }
 /* Mini alert banner with perfect white padding-box + subtle motion */
    .mini-alert {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translateX(-50%) translateY(-10px);
        padding: 10px 16px;
        border-radius: 10px;
        font-weight: 500;
        display: none;
        z-index: 9999;
        border: 2px solid transparent;
        background:
            linear-gradient(#ffffff, #ffffff) padding-box,
            linear-gradient(to right, #a5b4fc, #5eead4, #38bdf8) border-box;
        color: #0f172a;
        box-shadow: 0 18px 40px rgba(15, 23, 42, 0.28);
        animation: miniAlertPop 0.25s ease-out;
    }

    .mini-alert.success {
        background:
            linear-gradient(#ffffff, #ffffff) padding-box,
            linear-gradient(to right, #34d399, #6ee7b7, #a5b4fc) border-box;
    }

    .mini-alert.error {
        background:
            linear-gradient(#ffffff, #ffffff) padding-box,
            linear-gradient(to right, #fda4af, #f97316, #a5b4fc) border-box;
    }

    .mini-alert.info {
        background:
            linear-gradient(#ffffff, #ffffff) padding-box,
            linear-gradient(to right, #60a5fa, #a855f7, #5eead4) border-box;
    }

    @keyframes miniAlertPop {
        from {
            opacity: 0;
            transform: translateX(-50%) translateY(-4px) scale(0.96);
        }
        to {
            opacity: 1;
            transform: translateX(-50%) translateY(-10px) scale(1);
        }
    }
