.auth-panel {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}

.auth-panel--login {
  max-width: 400px;
}

.auth-social-login {
  width: 100%;
  margin-bottom: 8px;
}

.auth-social-login__label {
  font-size: 13px;
  font-weight: 600;
  color: #0C3C73;
  letter-spacing: 0.4px;
  margin-bottom: 14px;
  text-align: center;
  text-transform: uppercase;
}

.auth-social-login__buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.register-section .register-form-inner .auth-social-login__buttons,
.login-form .auth-social-login__buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.auth-social-btn {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  min-height: 54px;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none !important;
  transition: all 0.25s ease;
  border: 2px solid transparent;
  box-sizing: border-box;
  cursor: pointer;
}

.register-section .register-form-inner .auth-social-btn,
.login-form .auth-social-btn {
  display: flex !important;
  width: 100%;
}

.auth-social-btn img {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.auth-social-btn--google {
  background-color: #fff !important;
  border-color: #b4c3d4 !important;
  color: #0c3c73 !important;
  box-shadow: 0 2px 8px rgba(10, 48, 92, 0.08);
}

.auth-social-btn--google:hover,
.auth-social-btn--google:focus {
  background-color: #f4f8fb !important;
  border-color: #0a305c !important;
  color: #0a305c !important;
}

.auth-social-btn--apple {
  background-color: #000 !important;
  border-color: #000 !important;
  color: #fff !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
}

.auth-social-btn--apple:hover,
.auth-social-btn--apple:focus {
  background-color: #1a1a1a !important;
  border-color: #0a305c !important;
  color: #fff !important;
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 22px 0;
  width: 100%;
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background-color: #b4c3d4;
}

.auth-divider span {
  font-size: 12px;
  font-weight: 600;
  color: #7a8fa3;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.login-form .auth-divider {
  margin: 26px 0 22px;
}

.register-section .register-form-inner .auth-panel {
  margin-top: 4px;
}

@media (max-width: 575px) {
  .auth-social-btn {
    min-height: 50px;
    font-size: 15px;
    padding: 10px 16px;
  }

  .auth-social-login__label {
    font-size: 12px;
    margin-bottom: 12px;
  }
}
