/*.login-container .logo{
  font-size: 26px;
  font-weight: bold;
  text-align: center;
  color: rgba(var(--vitalitezen-color-1),1);;
}*/
.login-container h1.logo{
  font-size: 26px;
  font-weight: bold;
  text-align: center;
  color: rgba(var(--vitalitezen-color-1),1);
}
.login-container h2.logo{
  font-size: 20px;
  font-weight: normal;
  text-align: center;
}

.logo img {
  width: 150px;
  margin-bottom: 20px;
}

.login-form {
  background: #fff;
  padding: 20px;
  margin-top: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

.login-form h2 {
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
}

.form-group input {
  width: 100%;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.btn-login {
  width: 100%;
  padding: 10px;
  background-color: rgba(var(--vitalitezen-color-1),1);
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}


.signup-link {
  text-align: center;
  margin-top: 10px;
}

       :root {
            --star-color: #FFD700;
        }

        .stats-container {
            background: white;
            padding: 20px;
            border-radius: 8px;
            margin-bottom: 30px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            margin-top: 20px;
        }
        .global-rating {
            font-size: 48px;
            font-weight: bold;
            text-align: center;
            color: #333;
        }
        .rating-details {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 10px;
            margin-top: 20px;
        }
        .rating-item {
            text-align: center;
        }
        .stars {
            color: var(--star-color);
            font-size: 20px;
        }
        .reviews-container {
            display: grid;
            gap: 20px;
        }
        .review-card {
            background: white;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }
        .review-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 10px;
        }
        .review-date {
            color: #666;
            font-size: 0.9em;
        }
        .review-content {
            margin-top: 10px;
            color: #333;
        }
        .review-treatments {
            margin-top: 10px;
            color: #666;
            font-size: 0.9em;
        }
        .pagination {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 30px;
        }
        .pagination div {
            padding: 8px 12px;
            background: white;
            border-radius: 4px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }
        .pagination div.active {
            background: #007bff;
            color: white;
        }
        .pagination a {
            text-decoration: none;
            color: inherit;
        }
