.login-prompt {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 50vh;
  padding: 1rem;
}

.login-prompt--compact {
  border-radius: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 50vh;
}

.login-form {
  width: 100%;
  max-width: 420px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 18px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.08);
  padding: 2rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.login-form--simple {
  background-color: #f0f0f0;
  border-radius: 0;
}

.login-form:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.12);
}

.login-form p {
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.login-title {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #d11a1a;
}

.login-form-content {
  margin-left: 40px;
  margin-right: 40px;
}

.external-auth--compact {
  background-color: #d0d0d0;
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.external-auth-link {
  text-decoration: none;
  color: inherit;
}

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

.external-auth-icon {
  width: 20px;
  height: 20px;
  padding-right: 30px;
  border-right: 2px groove #eee;
}

.external-auth-image {
  vertical-align: top;
}

.external-auth-name {
  padding-left: 8px;
}

.login-form button {
  width: 100%;
  padding: 0.95rem 1.25rem;
  border: none;
  border-radius: 12px;
  background: #0d6efd;
  color: #ffffff;
  font-size: 1rem;
  cursor: pointer;
}

.login-form button:hover {
  background: #0b5ed7;
}

.profile-badge {
  position: fixed;
  top: 1rem;
  right: 1rem;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
  border: 2px solid rgba(255, 255, 255, 0.9);
  background: #ffffff;
  z-index: 1000;
}

.profile-badge img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.profile-menu-card {
  position: fixed;
  top: calc(1rem + 68px);
  right: 1rem;
  width: 360px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.14);
  border: 1px solid rgba(0, 0, 0, 0.08);
  z-index: 999;
  overflow: hidden;
}

.profile-menu-card[hidden] {
  display: none;
}

.profile-menu-header {
  width: 95%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px;
  background: lightgrey;
  margin: 10px;
  border-radius: inherit;
}

.profile-menu-header--center {
  text-align: center;
}

.profile-picture {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.9);
  background: #ffffff;
  z-index: 1000;
}

.profile-picture img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  display: block;
}

.profile-menu-card ul {
  list-style: none;
  margin: 0;
  padding: 0.75rem 0;
}

.profile-menu-card li {
  margin: 0;
}

.profile-menu-card a {
  display: block;
  padding: 0.75rem 1rem;
  color: #212529;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s ease;
}

.profile-menu-link-icon {
  width: 20px;
  height: 20px;
  padding-right: 2px;
  border-right: 2px groove #eee;
}

.profile-menu-link-icon-img {
  vertical-align: top;
  width: 20px;
  height: 20px;
}

.profile-menu-link-label {
  padding-left: 2px;
}

.header {
  text-align: center;
}

.banner-image {
  width: -webkit-fill-available;
}

.dashboard-content {
  text-align: center;
}
