.google-auth-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 20px;
  text-align: center;
  max-width: 400px;
  margin: 0 auto;
}
.google-auth-container .auth-header {
  margin-bottom: 24px;
}
.google-auth-container .auth-header .lock-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto;
  color: #1677ff;
}
.google-auth-container .auth-header .lock-icon svg {
  width: 100%;
  height: 100%;
}
.google-auth-container .auth-header h2 {
  color: #333;
  font-size: 16px;
  font-weight: normal;
  margin: 0;
}
.google-auth-container .verification-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 16px;
}
.google-auth-container .verification-section p {
  margin-bottom: 24px;
  color: #333;
  font-size: 14px;
}
.google-auth-container .verification-section .get-qr-button,
.google-auth-container .verification-section .get-code-button {
  padding: 8px 16px;
  background-color: #1677ff;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.3s;
}
.google-auth-container .verification-section .get-qr-button:hover,
.google-auth-container .verification-section .get-code-button:hover {
  background-color: #4096ff;
}
.google-auth-container .verification-section .get-qr-button:disabled,
.google-auth-container .verification-section .get-code-button:disabled {
  background-color: #d9d9d9;
  cursor: not-allowed;
}
.google-auth-container .verification-section .qr-code {
  margin-top: 24px;
}
.google-auth-container .verification-section .qr-code img {
  max-width: 200px;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  padding: 8px;
}
.google-auth-container .verification-section .code-input-group {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 24px;
}
.google-auth-container .verification-section .code-input-group input {
  width: 40px;
  height: 40px;
  text-align: center;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  font-size: 18px;
  outline: none;
}
.google-auth-container .verification-section .code-input-group input:focus {
  border-color: #1677ff;
  box-shadow: 0 0 0 2px rgba(22, 119, 255, 0.2);
}
.google-auth-container .verification-section .code-input-group input:disabled {
  background-color: #f5f5f5;
  cursor: not-allowed;
}
.google-auth-container .trust-device {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #666;
  font-size: 14px;
  margin-top: 16px;
}
.google-auth-container .trust-device input[type=checkbox] {
  margin: 0;
}
.google-auth-container .mfa-help {
  color: #4285f4;
  text-decoration: none;
  font-size: 14px;
  margin-top: 16px;
}
.google-auth-container .mfa-help:hover {
  text-decoration: underline;
}
.google-auth-container .error-message {
  color: #ff4d4f;
  margin-top: 16px;
  font-size: 14px;
}
.google-auth-container .success-message {
  color: #52c41a;
  margin-top: 16px;
  font-size: 14px;
}

.qr-section {
  text-align: center;
}
.qr-section h3 {
  color: #333;
  font-size: 16px;
  font-weight: normal;
  margin-bottom: 20px;
}
.qr-section img {
  max-width: 200px;
  height: auto;
  margin-top: 10px;
  border: 1px solid #ddd;
  padding: 10px;
  border-radius: 4px;
}