body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen",
    "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue",
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

code {
  font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New",
    monospace;
}

.App-logo {
  height: 40vmin;
  pointer-events: none;
}

@media (prefers-reduced-motion: no-preference) {
  .App-logo {
    animation: App-logo-spin infinite 20s linear;
  }
}

.App-header {
  background-color: #282c34;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: calc(10px + 2vmin);
  color: white;
}

.App-link {
  color: #61dafb;
}

@keyframes App-logo-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.page-header {
  background-color: #333;
  color: white;
  padding: 1rem;
}

.header-content {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.page-title {
  margin: 0;
  flex: 1;
  text-align: center;
}

.service-selector {
  position: absolute;
  right: 0;
}

.page-content {
  flex: 1;
  padding: 2rem;
  background-color: #f9f9f9;
}

.page-footer {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 1rem;
}

.login-container {
  max-width: 400px;
  margin: 0 auto;
  padding: 2rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  background-color: #fff;

  h2 {
    margin-top: 0;
  }
}

.login-form {
  display: flex;
  flex-direction: column;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: bold;
}

.form-group input {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}
/* Valid input */
.form-group input.valid {
  border-color: #ccc;
}

/* Invalid input */
.form-group input.invalid {
  border-color: #f43f5e;
  outline: none;
}

.form-group input.invalid:focus {
  box-shadow: 0 0 0 2px rgba(244, 63, 94, 0.4);
  border-color: #f43f5e;
}

.form-group .error-message {
  color: #f43f5e;
  font-size: 0.875rem;
  margin-top: 0.25rem;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  display: inline;
}

.login-button {
  padding: 0.75rem;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: bold;
  transition: background-color 0.3s;
}

.login-button.disabled {
  opacity: 0.5;

  cursor: not-allowed;
}

.login-button:hover {
  background-color: #0056b3;
}

.error-message {
  background-color: rgba(255, 0, 0, 0.1);
  color: #d8000c;
  border: 1px solid #d8000c;
  border-radius: 4px;
  margin: 1rem 0;
  font-size: 1rem;
  text-align: center;
}

.error-content {
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-icon {
  font-size: 1.3rem;
  padding-right: 0.5rem;
}

/* src/pages/OAuthAuthorize/OAuthAuthorize.css */
.authorize-container {
  max-width: 400px;
  margin: 0 auto;
  padding: 2rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  background-color: #fff;
}
.authorize-container h2 {
  margin-top: 0;
}
.authorize-content {
  margin-bottom: 1rem;
}
.authorize-buttons {
  display: flex;
  justify-content: center; /* Center the buttons */
  gap: 1rem; /* Add a fixed gap between the buttons */
}
.authorize-button,
.deny-button {
  padding: 0.75rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: bold;
  transition: background-color 0.3s;
}
.authorize-button {
  background-color: #007bff;
  color: white;
}
.authorize-button:hover {
  background-color: #0056b3;
}
.deny-button {
  background-color: #dc3545;
  color: white;
}
.deny-button:hover {
  background-color: #c82333;
}

.not-found-container {
  max-width: 400px;
  margin: 0 auto;
  padding: 2rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  background-color: #fff;

  h2 {
    margin-top: 0;
  }
}
.login-container {
  max-width: 400px;
  margin: 0 auto;
  padding: 2rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  background-color: #fff;

  h2 {
    margin-top: 0;
  }
}

.login-form {
  display: flex;
  flex-direction: column;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: bold;
}

.form-group input {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

.login-button {
  padding: 0.75rem;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: bold;
  transition: background-color 0.3s;
}

.login-button:hover {
  background-color: #0056b3;
}


/*# sourceMappingURL=main.834bf566ba81caf211b7.css.map*/