/* Google Sign-in Button Styles */
.google-signin-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 12px 16px;
  background-color: #fff;
  border: 1px solid #dadce0;
  border-radius: 8px;
  color: #3c4043;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  margin-bottom: 16px;
}

.google-signin-btn:hover {
  background-color: #f8f9fa;
  border-color: #c6c6c6;
  text-decoration: none;
  color: #3c4043;
}

.google-signin-btn:active {
  background-color: #f1f3f4;
  border-color: #c6c6c6;
}

.google-signin-btn:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(66, 133, 244, 0.3);
}

.google-signin-btn .google-icon {
  width: 18px;
  height: 18px;
  margin-right: 12px;
  flex-shrink: 0;
}

.google-signin-btn .google-text {
  flex-grow: 1;
  text-align: center;
}

.divider {
  display: flex;
  align-items: center;
  margin: 24px 0;
  color: #5f6368;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
}

.divider::before,
.divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background-color: #dadce0;
  display: block;
}

.divider::before {
  margin-right: 16px;
}

.divider::after {
  margin-left: 16px;
}

/* Ensure the text is properly centered */
.divider {
  text-align: center;
  white-space: nowrap;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .google-signin-btn {
    padding: 10px 14px;
    font-size: 13px;
  }
  
  .google-signin-btn .google-icon {
    width: 16px;
    height: 16px;
    margin-right: 10px;
  }
}
