/* Basic structure styles ensuring stacking order */
.authpro-login-form .authpro-field-group {
  margin-bottom: 20px;
}

.authpro-login-form .authpro-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

.authpro-login-form .authpro-input {
  width: 100%;
  padding: 12px;
  display: block;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.authpro-login-form .authpro-remember {
  margin-bottom: 20px;
}

.authpro-login-form .authpro-button {
  width: 100%;
  padding: 12px;
  margin-top: 10px;
  cursor: pointer;
  text-align: center;
  border: none;
  border-radius: 4px;
  font-weight: bold;
}

.authpro-login-form .authpro-links {
  margin-top: 15px;
  font-size: 0.9em;
}

.authpro-login-form .authpro-sep {
  margin: 0 8px;
  color: #ccc;
}

/* Social Login Styles */
.authpro-social-separator {
  text-align: center;
  margin: 20px 0;
  position: relative;
}

.authpro-social-separator span {
  background: #fff;
  padding: 0 10px;
  color: #999;
  position: relative;
  z-index: 1;
}

.authpro-social-separator:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  border-top: 1px solid #eee;
  z-index: 0;
}

.authpro-social-login-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.authpro-social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: all 0.3s ease;
  background: #fff;
}

.authpro-social-btn i {
  margin-right: 10px;
  font-size: 1.2em;
}

.authpro-social-btn:hover {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transform: translateY(-1px);
}

/* Specific Provider Colors */
.authpro-google {
  color: #db4437;
  border-color: #db4437;
}

.authpro-google:hover {
  background: #db4437;
  color: #fff;
}

.authpro-github {
  color: #333;
  border-color: #333;
}

.authpro-github:hover {
  background: #333;
  color: #fff;
}

.authpro-facebook {
  color: #4267b2;
  border-color: #4267b2;
}

.authpro-facebook:hover {
  background: #4267b2;
  color: #fff;
}

.authpro-twitter {
  color: #1da1f2;
  border-color: #1da1f2;
}

.authpro-twitter:hover {
  background: #1da1f2;
  color: #fff;
}
