.dashboard_container .dashboard_side{
 width: var(--width-100) !important;
}

/*digits chagnes start*/
body {
    margin: 0;
    font-family: 'Vazirmatn', sans-serif;
    background: linear-gradient(135deg, #667eea, #764ba2);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Center container */
.digits-form_container {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 30px;
    width: 100%;
    max-width: 380px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.2);
}

/* Title */
.digits-form_heading_text {
    font-size: 22px;
    font-weight: 600;
    text-align: center;
    color: #fff;
    margin-bottom: 20px;
}

/* Inputs */
.digits-form_input input {
    width: 100%;
    padding: 14px 16px;
    border-radius: 12px;
    border: none;
    outline: none;
    font-size: 14px;
    background: rgba(255,255,255,0.2);
    color: #fff;
    transition: 0.3s;
}

.digits-form_input input::placeholder {
    color: rgba(255,255,255,0.7);
}

.digits-form_input input:focus {
    background: rgba(255,255,255,0.3);
    box-shadow: 0 0 0 2px rgba(255,255,255,0.4);
}

/* Country code box fix */
.digits-form_countrycode input {
    background: transparent !important;
    width: 70px;
    text-align: center;
}

/* Row spacing */
.digits-form_input_row {
    margin-bottom: 15px;
}

/* Checkbox */
.digits-form_rememberme {
    color: #fff;
    font-size: 13px;
}

/* Button */
.digits-form_submit-btn {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    border: none;
    background: linear-gradient(135deg, #00c6ff, #0072ff);
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.digits-form_submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 114, 255, 0.4);
}

/* Tabs */
.digits-form_tab-item {
    background: rgba(255,255,255,0.2);
    border-radius: 10px;
    padding: 8px 12px;
    color: #fff;
}

.digits-tab_active {
    background: #fff;
    color: #333;
}

/* Remove ugly borders */
.digits-form_border {
    border: none !important;
}

/* Footer spacing */
.digits-form_footer {
    margin-top: 10px;
}
/*digits end*/