body {
  background-color: #121212;
  color: #fff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
  padding: 0;
}

.container.center {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
}

.login-card {
  background-color: #1e1e1e;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  width: 100%;
  max-width: 400px;
  padding: 30px;
  margin: 40px 0;
}

.title {
  color: #ffffff;
  text-align: center;
  margin-top: 0;
  margin-bottom: 25px;
  font-size: 28px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #a0a0a0;
}

.input.w100 {
  width: 100%;
  padding: 12px;
  background-color: #2d2d2d;
  border: 1px solid #303030;
  border-radius: 4px;
  color: #fff;
  box-sizing: border-box;
}

button.ms-action2 {
  background-color: #7289da;
  color: white;
  border: none;
  border-radius: 4px;
  padding: 12px;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  margin-top: 10px;
  transition: background-color 0.2s;
}

button.ms-action2:hover {
  background-color: #5f73bc;
}

.divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 25px 0;
  color: #aaa;
}

.divider::before,
.divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #333;
}

.divider:not(:empty)::before {
  margin-right: 15px;
}

.divider:not(:empty)::after {
  margin-left: 15px;
}

.oauth-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: white;
  font-size: 1.5rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.oauth-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.oauth-icon.discord {
  background-color: #5865F2;
}

.oauth-icon.github {
  background-color: #24292e;
}

.oauth-icon.steam {
  background-color: #171a21;
}

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

.gap-3 {
  gap: 15px;
}

@media (max-width: 576px) {
  .login-card {
    width: 90%;
    padding: 20px;
  }
}

.notification {
  display: flex;
  align-items: center;
  padding: 15px;
  margin-bottom: 25px; /* Spacing between notification and form */
  border-radius: 6px;
  font-size: 15px;
  border: 1px solid transparent;
  animation: fadeIn 0.5s ease-in-out;
}

.notification-content {
  flex-grow: 1;
}

.notification-icon {
  margin-right: 12px;
  font-size: 1.3em;
  line-height: 1;
}

.notification-close {
  background: none;
  border: none;
  color: inherit;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  opacity: 0.7;
  padding: 0 0 0 15px;
  transition: opacity 0.2s ease;
}

.notification-close:hover {
  opacity: 1;
}

.notification.error {
  background-color: rgba(240, 71, 71, 0.15);
  border-color: #f04747;
  color: #f8baba; 
}

.notification.success {
  background-color: rgba(67, 181, 129, 0.15);
  border-color: #43b581;
  color: #b3e3cd;
}

.notification.info {
  background-color: rgba(88, 101, 242, 0.15);
  border-color: #5865F2;
  color: #c4c9fa;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}