.telegram{
    max-width: 76px;
    margin: 112px auto;
    border: none;
    position: fixed;
    right: 20px;
    bottom: -100px;
    z-index: 564;
}

/* Login Box */
        .login-box {
            width: 400px;
            background: #fff;
            /*background: rgba(255, 255, 255, 0.9);*/
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
        }
        .login-box-msg{
            color:white;
        }

        .forget-card {
            border-radius: 10px;
            background-color: #1a3046  !important;
            /*background-color: #2c18d6;*/
            padding: 8px;
            border:none;
            box-shadow:none;
        }

        h4 {
            color: #3a0938;
            font-family: Cambria, serif;
            font-weight: bold;
            text-align: center;
        }

        /* Form Input Styling */
        .form-control {
            padding: 12px;
            border: 1px solid #ccc;
            transition: 0.3s ease-in-out;
        }

        .form-control:focus {
            border-color: #3a0938;
            box-shadow: 0 0 8px rgba(58, 9, 56, 0.4);
        }

        /* Input Group */
        .input-group-text {
            background: #080b8e;
            color: #fff;
            border-radius: 8px 0 0 8px;
        }

        /* Buttons */
        .btn-custom {
            background: #080b8e;
            color: #fff;
            padding: 12px;
            font-weight: bold;
            border-radius: 8px;
            transition: 0.3s;
        }

        .btn-custom:hover {
            background: #1a1a9f;
        }

        /* Sign-up and Forgot Password Links */
        .extra-links a {
            color: #ffcc00;
            font-weight: bold;
            text-decoration: none;
        }

        .extra-links a:hover {
            text-decoration: underline;
        }
        .select2-container {
  width: 100% !important;
}

.select2-selection {
  width: 100% !important;
}






/*dashboard*/

.gt-dashboard{
    display:flex;
    flex-direction:column;
    gap:20px;
    margin-bottom:25px;
}

.gt-top-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
}

.gt-profile-card{
    background:linear-gradient(135deg,#09130d 0%,#11261b 100%);
    border-radius:16px;
    padding:25px;
    color:#fff;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    border:1px solid rgba(16,185,129,.2);
}

.gt-profile-header{
    display:flex;
    align-items:center;
    gap:20px;
    margin-bottom:25px;
}

.gt-profile-avatar{
    width:75px;
    height:75px;
    border-radius:50%;
    object-fit:cover;
    border:3px solid #10b981;
    box-shadow:0 0 15px rgba(16,185,129,.35);
}

.gt-profile-info h2{
    margin:0 0 5px;
    font-size:22px;
    font-weight:700;
    color:#fff;
}

.gt-profile-info p{
    margin:0;
    font-size:13px;
    color:#94a3b8;
}

.gt-profile-buttons{
    display:flex;
    gap:12px;
    margin-bottom:25px;
}

.gt-btn{
    flex:1;
    height:42px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    border-radius:8px;
    text-decoration:none;
    font-size:13px;
    font-weight:600;
    transition:.25s;
}

.gt-btn-outline{
    color:#fff;
    border:1px solid rgba(16,185,129,.35);
    background:transparent;
}

.gt-btn-outline:hover{
    color:#fff;
    background:rgba(16,185,129,.15);
    border-color:#10b981;
    text-decoration:none;
}

.gt-profile-stats{
    display:flex;
    justify-content:space-around;
    padding-top:20px;
    border-top:1px solid rgba(255,255,255,.08);
}

.gt-stat-item{
    text-align:center;
}

.gt-stat-label{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:6px;
    font-size:12px;
    color:#94a3b8;
    margin-bottom:8px;
}

.gt-stat-label i{
    color:#10b981;
}

.gt-stat-value{
    font-size:22px;
    font-weight:700;
}

.gt-income{
    color:#34d399;
}

.gt-withdraw{
    color:#f87171;
}

.gt-investment{
    color:#60a5fa;
}

.gt-referral-card{
    background:#fff;
    border-radius:16px;
    padding:25px;
    box-shadow:0 10px 25px rgba(0,0,0,.05);
    border:1px solid #e2e8f0;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
}

.gt-referral-header{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    margin-bottom:20px;
}

.gt-referral-header h3{
    margin:0 0 4px;
    font-size:18px;
    font-weight:700;
    color:#0f172a;
}

.gt-referral-header p{
    margin:0;
    font-size:13px;
    color:#64748b;
}

.gt-badge{
    background:#ecfdf5;
    color:#10b981;
    padding:5px 12px;
    border-radius:20px;
    font-size:12px;
    font-weight:600;
}

.gt-referral-title{
    margin-bottom:8px;
    font-size:12px;
    font-weight:600;
    color:#475569;
}

.gt-link-group{
    display:flex;
    margin-bottom:18px;
    border:1px solid #cbd5e1;
    border-radius:8px;
    overflow:hidden;
    background:#f8fafc;
}

.gt-link-group input{
    border:none!important;
    box-shadow:none!important;
    background:transparent!important;
    font-size:13px;
}

.gt-copy-btn{
    padding:0 22px;
    border:none;
    background:#10b981;
    color:#fff;
    font-size:13px;
    font-weight:600;
    transition:.25s;
}

.gt-copy-btn:hover{
    background:#059669;
}

.gt-whatsapp-banner{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:12px 15px;
    border-radius:8px;
    background:#f0fdf4;
    border:1px solid #dcfce7;
    color:#166534;
    text-decoration:none;
    font-size:13px;
    font-weight:500;
    transition:.25s;
}

.gt-whatsapp-banner:hover{
    background:#dcfce7;
    color:#166534;
    text-decoration:none;
}

.gt-whatsapp-banner i{
    font-size:20px;
    color:#25d366;
}

.gt-ticker{
    display:flex;
    align-items:center;
    gap:12px;
    background:#fff;
    border-left:4px solid #10b981;
    border-radius:8px;
    padding:15px 20px;
    box-shadow:0 4px 12px rgba(0,0,0,.03);
    color:#475569;
    font-size:13px;
}

.gt-ticker i{
    color:#10b981;
    font-size:16px;
}

.gt-ticker strong{
    color:#0f172a;
}

@media(max-width:991px){
    .gt-top-grid{
        grid-template-columns:1fr;
    }

    .gt-profile-buttons{
        flex-direction:column;
    }

    .gt-profile-stats{
        flex-direction:column;
        gap:18px;
    }
}

@media(max-width:576px){
    .gt-profile-header{
        flex-direction:column;
        text-align:center;
    }

    .gt-referral-header{
        flex-direction:column;
        gap:12px;
    }

    .gt-link-group{
        flex-direction:column;
    }

    .gt-copy-btn{
        height:45px;
    }

    .gt-whatsapp-banner{
        flex-direction:column;
        gap:10px;
        text-align:center;
    }
}