@import url('https://fonts.googleapis.com/css?family=Montserrat&display=swap');

body {
  font-family: 'Montserrat', sans-serif !important;
}


/*login page start*/

 #login_page {
    background-color: #0a0a0a !important;
    color: #e0e0e0;
    height: 100vh;
    margin: 0;
}
        
.auth-container {
    display: flex;
    height: 100%;
    
}
        
.auth-image {
    flex: 1;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
    url('https://images.unsplash.com/photo-1571902943202-507ec2618e8f?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1075&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
}
        
.auth-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #121212;
    padding: 2rem;
}
        
.auth-logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #3a86ff;
}
        
.auth-logo i {
    margin-right: 10px;
}
        
.gym-features {
    margin-top: 2rem;
}
        
.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}
        
.feature-icon {
    background-color: #3a86ff;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}
        
.btn-auth {
    background-color: #3a86ff;
    border: none;
    padding: 10px;
    font-weight: 500;
}
        
.btn-auth:hover {
    background-color: #2a75e6;
}
        
.password-toggle {
    cursor: pointer;
    background-color: #e0e0e0;
    padding: 0 10px;
    display: flex;
    align-items: center;
}
        
.input-group-text {
    background-color: #e0e0e0;
}    

.fa-eye, .fa-eye-slash{
    color:#000 !important;
}
        
        
     /*login page end*/
   
    /*Dashboard page start*/

.sidebar {
            width: 250px !important;
            height: 100vh;
            position: fixed;
            padding-top: 20px;
        }

        .dashboard-card {
            border-radius: 10px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            transition: transform 0.3s;
            border: none;
        }
        .dashboard-card:hover {
            transform: translateY(-5px);
        }
        .card-icon {
            font-size: 2rem;
            opacity: 0.7;
        }
        .card-title {
            font-size: 0.9rem;
            color: #6c757d;
        }
        .card-value {
            font-size: 1.8rem;
            font-weight: 700;
        }
        .bg-expiring {
            background-color: #fff3cd;
        }
        .profile-btn {
            transition: all 0.2s;
        }
        .profile-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        .view-all-btn {
            transition: all 0.2s;
        }
        .view-all-btn:hover {
            transform: translateX(3px);
        }


    /*Dashboard page end   */
    
    
    
.page-wrapper {
    width: auto;
  margin-left: 260px; /* Sidebar ki width ke barabar */
  margin-top: 70px;   /* Header ki height ke barabar */
  padding: 20px;      /* Optional spacing */
}

.login-box {
    background: #fff;
    padding: 40px;
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.login-box h2 {
    margin-bottom: 20px;
    text-align: center;
    color: #333;
}

.login-box label {
    display: block;
    margin-bottom: 5px;
    color: #555;
}

.login-box input[type="text"],
.login-box input[type="password"] {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 8px;
}

.login-box input[type="submit"] {
    width: 100%;
    padding: 12px;
    background: #007BFF;
    border: none;
    color: #fff;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.login-box input[type="submit"]:hover {
    background: #0056b3;
}

.error {
    color: red;
    text-align: center;
    margin-bottom: 15px;
}

.footer-text {
    text-align: center;
    margin-top: 15px;
    font-size: 14px;
    color: #777;
}



/*.main {*/
/*    margin-left: 300px;*/
/*    padding: 20px;*/
/*}*/

.topbar {
    background: #007bff;
    color: #fff;
    padding: 15px 20px;
    font-size: 18px;
}

       .stats-container {
            display: flex;
            gap: 20px;
            margin: 30px 0;
            flex-wrap: wrap;
        }
        .stat-box {
            flex: 1;
            min-width: 200px;
            padding: 20px;
            background-color: #f1f1f1;
            border-left: 5px solid;
            box-shadow: 0 0 10px rgba(0,0,0,0.1);
        }
        .stat-box h3 {
            margin: 0;
            font-size: 18px;
        }
        .stat-box p {
            font-size: 26px;
            margin-top: 10px;
        }
        .blue { border-color: #3498db; }
        .green { border-color: #2ecc71; }
        .red { border-color: #e74c3c; }
        .purple { border-color: #9b59b6; }


.footer {
    margin-top: 40px;
    text-align: center;
    color: #666;
}

