/* Social Auth Styles */
.social-auth-container {
  margin-bottom: 30px;
  text-align: center;
  padding: 20px;
  background: #f9f9f9;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
}

.social-auth-container h3 {
  margin-bottom: 20px;
  font-size: 18px;
  color: #333;
  font-weight: 600;
}

.social-auth-button {
  margin: 8px 0;
}

.social-auth-button a {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  min-width: 250px;
  text-align: center;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 14px;
}

.social-auth-google {
  background-color: #db4437 !important;
  color: white !important;
  margin-bottom: 10px;
}

.social-auth-google:hover {
  background-color: #c23321 !important;
  text-decoration: none;
  color: white !important;
}

.social-auth-facebook {
  background-color: #3b5998 !important;
  color: white !important;
  margin-bottom: 10px;
}

.social-auth-facebook:hover {
  background-color: #2d4373 !important;
  text-decoration: none;
  color: white !important;
}

.auth-divider {
  margin: 25px 0;
  text-align: center;
  position: relative;
}

.auth-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: #ddd;
}

.auth-divider span {
  background: white;
  padding: 0 15px;
  color: #666;
  position: relative;
  z-index: 1;
  font-size: 14px;
  font-weight: 500;
}

/* Responsive design */
@media (max-width: 768px) {
  .social-auth-container {
    margin: 15px;
    padding: 15px;
  }
  
  .social-auth-button a {
    min-width: 200px;
    padding: 10px 15px;
  }
}

/* Styling pro základní přihlašovací formulář */
.user-login-form {
  max-width: 400px;
  margin: 0 auto;
  padding: 20px;
}

.user-login-form .form-item {
  margin-bottom: 15px;
}

.user-login-form input[type="text"],
.user-login-form input[type="password"] {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
}

.user-login-form input[type="submit"] {
  background-color: #007cba;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  width: 100%;
}

.user-login-form input[type="submit"]:hover {
  background-color: #005a87;
}