/* Auth & Dashboard Premium Styles */

:root {
    --primary-gradient: linear-gradient(135deg, #0d6efd 0%, #0056b3 100%);
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.auth-page-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.auth-card {
    border: none;
    border-radius: 20px;
    box-shadow: var-card-shadow;
    overflow: hidden;
    background: #ffffff;
}

.btn-linear-primary {
    background: var(--primary-gradient);
    color: #ffffff !important;
    border: none;
    padding: 12px 25px;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.2);
}

.btn-linear-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(13, 110, 253, 0.3);
    opacity: 0.95;
}

/* Dashboard Premium Redesign */
.dash-card {
    border: none;
    border-radius: 16px;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
    background: #ffffff;
}

.dash-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.bg-gradient-primary {
    background: var(--primary-gradient) !important;
    color: #ffffff;
}

.stat-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.25rem;
}

.page-wrapper {
    background-color: #f8f9fa;
    padding-top: 30px;
}

/* Sidebar Profile Improvements */
.user-sidebar {
    border: none;
    border-radius: 20px;
    box-shadow: var(--card-shadow);
}

.avatar-xxl {
    width: 100px !important;
    height: 100px !important;
}

.user-sidebar .avatar {
    border: 3px solid #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.user-sidebar-body ul li a.active {
    background: var(--primary-gradient) !important;
    color: #ffffff !important;
}

.user-sidebar-body ul li a {
    border-radius: 10px;
    margin-bottom: 5px;
}

/* Form Controls */
.form-control {
    border-radius: 10px;
    padding: 12px 15px;
    border: 1px solid #eef0f2;
    background-color: #f8f9fa;
}

.form-control:focus {
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.1);
    border-color: #0d6efd;
}
