
.btn-purple {
    color: #fff !important;
    background-color: #930483 !important;
    border-color: #930483 !important;
}

.text-purple {
    --bs-text-opacity: 1;
    color: #930483 !important;
}

.text-dark-purple {
    --bs-text-opacity: 1;
    color: #1f008e !important;
}

.text-dark-red {
    --bs-text-opacity: 1;
    color: #970303 !important;
}

.text-bold-goi {
    font-weight: 700 !important;
}

.btn-green-goi {
    color: #fff !important;
    background-color: #5A8259 !important;
    border-color: #5A8259 !important;
}
/*5A8259*/
/*#2c774d*/
.text-green-goi {
    --bs-text-opacity: 1;
    color: #5A8259 !important;
}

.text-green-goi-head {
    --bs-text-opacity: 1;
    border-color: #dcdcca !important;
    color: #5A8259 !important;
}

@media(max-width: 576px){
    .auth-form {
        width: 100% !important;
    }
}

/* dashboard */

/* Dashboard Custom Buttons */

.btn-dashboard {
    border: none;
    border-radius: 0.5rem;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    position: relative;
    overflow: hidden;
}

.btn-dashboard::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: left 0.3s ease;
}

.btn-dashboard:hover::before {
    left: 0;
}

.btn-dashboard:hover {
    transform: translateY(-3px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    color: #fff;
}

.btn-dashboard:active {
    transform: translateY(-1px);
}

/* Purple - Elegante e professionale */
.btn-dashboard-purple {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.btn-dashboard-purple:hover {
    background: linear-gradient(135deg, #5568d3 0%, #63408a 100%);
}

/* Blue - Affidabile e moderno */
.btn-dashboard-blue {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.btn-dashboard-blue:hover {
    background: linear-gradient(135deg, #3d92e5 0%, #00d9e5 100%);
}

/* Orange - Energico e accattivante */
.btn-dashboard-orange {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.btn-dashboard-orange:hover {
    background: linear-gradient(135deg, #e15d87 0%, #e5c827 100%);
}

/* Teal - Fresco e bilanciato */
.btn-dashboard-teal {
    background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
}

.btn-dashboard-teal:hover {
    background: linear-gradient(135deg, #2ab6b7 0%, #2a0654 100%);
}

/* Typography */
.dashboard-btn-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.dashboard-btn-subtitle {
    font-size: 0.875rem;
    opacity: 0.9;
}

/* Icon styling */
.btn-dashboard i {
    opacity: 0.9;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .btn-dashboard {
        padding: 1.5rem !important;
    }

    .btn-dashboard i {
        font-size: 2rem !important;
    }

    .dashboard-btn-title {
        font-size: 1.1rem;
    }

    .dashboard-btn-subtitle {
        font-size: 0.8rem;
    }
}