.signin-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-color: #f5f5f5;
  padding: 16px;
}

.signin-card {
  width: 100%;
  max-width: 400px;
  padding: 32px;
  border-radius: 8px;
  animation: fadeInUp 0.5s ease;
}

.signin-logo {
  display: flex;
  justify-content: center;
}

.signin-title {
  text-align: center;
  margin-bottom: 24px;
  font-weight: 500;
}

.signin-error {
  margin-bottom: 16px;
}

.signin-form .form-input {
  margin-bottom: 16px;
}
.signin-form .forgot-password-link {
  display: block;
  text-align: right;
  margin-bottom: 24px;
  color: rgba(0, 0, 0, 0.6);
  font-size: 0.875rem;
}
.signin-form .forgot-password-link:hover {
  color: #1976d2;
  text-decoration: none;
}
.signin-form .signin-button {
  margin-bottom: 24px;
  padding: 8px 0;
  font-weight: 500;
  background: linear-gradient(to right, rgb(37, 99, 235), rgb(147, 51, 234));
}
.signin-form .signin-button:hover {
  background-color: #1565c0;
}
.signin-form .signup-prompt {
  text-align: center;
}
.signin-form .signup-prompt .signup-link {
  color: #1976d2;
  font-weight: 500;
}
.signin-form .signup-prompt .signup-link:hover {
  text-decoration: none;
}

@keyframes fadeInUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}.logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: transform 0.2s ease;
}
.logo-container:hover {
  transform: scale(1.05);
}
.logo-container.signin {
  width: 40% !important;
}
.logo-container.forgot {
  justify-content: center;
  width: 40% !important;
}
.logo-container.common {
  justify-content: center;
}
.logo-container .logo-icon {
  color: #1976d2;
  height: auto !important;
}
.logo-container .logo-text {
  font-weight: 500;
  color: #1976d2;
  letter-spacing: 0.5px;
}.signup-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-color: #f5f5f5;
  padding: 16px;
}

.signup-card {
  width: 100%;
  max-width: 400px;
  padding: 32px;
  border-radius: 8px;
  animation: fadeInUp 0.5s ease;
}

.signup-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}

.signup-title {
  text-align: center;
  margin-bottom: 24px;
  font-weight: 500;
}

.signup-error {
  margin-bottom: 16px;
}

.signup-form .form-input {
  margin-bottom: 16px;
}
.signup-form .signup-button {
  margin-bottom: 24px;
  padding: 8px 0;
  font-weight: 500;
}
.signup-form .signup-button:hover {
  background-color: #1565c0;
}
.signup-form .signin-prompt {
  text-align: center;
}
.signup-form .signin-prompt .signin-link {
  color: #1976d2;
  font-weight: 500;
}
.signup-form .signin-prompt .signin-link:hover {
  text-decoration: none;
}

@keyframes fadeInUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}.form-input {
  margin-bottom: 16px;
}

.form-button {
  margin-top: 16px;
  padding: 8px 0;
  font-weight: 500;
}.forgot-password-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-color: #f5f5f5;
  padding: 16px;
}

.forgot-password-card {
  width: 100%;
  max-width: 500px;
  padding: 32px;
  border-radius: 8px;
  animation: fadeInUp 0.5s ease;
}

.forgot-password-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

.forgot-password-title {
  text-align: center;
  margin-bottom: 24px;
  font-weight: 500;
}

.forgot-password-stepper {
  margin-bottom: 32px;
  margin-top: 32px;
}
.forgot-password-stepper .MuiStepLabel-label {
  font-size: 0.875rem;
}
.forgot-password-stepper .MuiStepLabel-label.MuiStepLabel-alternativeLabel {
  margin-top: 8px;
}

.forgot-password-form .form-input {
  margin-bottom: 16px;
}
.forgot-password-form .form-button {
  margin-top: 16px;
  padding: 8px 0;
  font-weight: 500;
}
.forgot-password-form .form-error {
  margin-bottom: 16px;
}

@keyframes fadeInUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.loader {
  animation: rotation 1s linear infinite;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}.menu-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  height: 100%;
}
.menu-bar .menu-item {
  color: gray;
  border-radius: 4px;
  padding: 8px 16px;
  font-weight: 500;
  transition: all 0.2s ease-in-out;
  text-transform: none;
  font-size: medium;
}
.menu-bar .menu-item:hover {
  color: rgb(59, 130, 246);
  background-color: rgba(255, 255, 255, 0.08);
  transform: scale(1.05);
}
.menu-bar .menu-item.active {
  color: rgb(59, 130, 246);
  position: relative;
}
.menu-bar .menu-item.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 3px;
  background-color: #fff;
  border-radius: 2px;
}

@media (max-width: 600px) {
  .menu-bar .menu-item {
    padding: 4px 8px;
  }
  .menu-bar .menu-item .MuiButton-startIcon {
    margin-right: 0;
  }
  .menu-bar .menu-item span {
    display: none;
  }
}.user-menu .user-info {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.user-menu .user-info:hover {
  background-color: rgba(255, 255, 255, 0.08);
}
.user-menu .user-avatar {
  background: linear-gradient(to right, #2563eb, #9333ea);
  width: 34px;
  height: 34px;
  font-size: 0.9rem;
  margin-right: 30px;
}
.user-menu .user-name-container {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #fff;
}
.user-menu .user-name {
  font-weight: 500;
  white-space: nowrap;
}

.user-dropdown .MuiMenuItem-root {
  padding: 8px 16px;
  min-width: 180px;
}
.user-dropdown .MuiMenuItem-root .MuiListItemIcon-root {
  min-width: 36px;
  color: rgba(0, 0, 0, 0.6);
}.shell-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.shell-container .app-bar {
  background-color: #ffffff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}
.shell-container .app-bar .MuiToolbar-root {
  padding: 8px 16px;
  align-items: stretch;
}
@media (min-width: 960px) {
  .shell-container .app-bar .MuiToolbar-root {
    padding: 8px 24px;
  }
}
.shell-container .app-bar-logo {
  flex: 0 0 auto;
  margin-right: 16px;
  width: 10%;
  height: auto;
  display: flex;
}
.shell-container .app-bar-menu {
  flex: 1;
  display: flex;
  justify-content: center;
  height: auto;
}
.shell-container .app-bar-user {
  flex: 0 0 auto;
  margin-left: auto;
  height: auto;
}
.shell-container .menu-toggle {
  margin-right: 8px;
}
.shell-container .content-container {
  flex: 1;
  padding: 0 !important;
}
@media (min-width: 600px) {
  .shell-container .content-container {
    padding: 24px;
  }
}
@media (min-width: 960px) {
  .shell-container .content-container {
    padding: 32px;
  }
}

.mobile-drawer .MuiDrawer-paper {
  width: 280px;
  background-color: #ffffff;
  padding: 16px;
}
.mobile-drawer .drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.mobile-drawer .drawer-content .menu-bar {
  flex-direction: column;
  align-items: flex-start;
  height: auto;
}
.mobile-drawer .drawer-content .menu-bar .menu-item {
  color: rgba(0, 0, 0, 0.87);
  width: 100%;
  justify-content: flex-start;
}
.mobile-drawer .drawer-content .menu-bar .menu-item.active {
  background-color: rgba(25, 118, 210, 0.1);
  color: #1976d2;
}
.mobile-drawer .drawer-content .menu-bar .menu-item.active::after {
  content: none;
}
.mobile-drawer .drawer-content .menu-bar .menu-item:hover {
  background-color: rgba(25, 118, 210, 0.05);
  color: #1976d2;
}
.mobile-drawer .drawer-content .menu-bar .menu-item .MuiButton-startIcon {
  margin-right: 8px;
  color: inherit;
}
.mobile-drawer .drawer-content .menu-bar .menu-item span {
  display: block;
}.gpp-container .gpp-content .loader {
  animation: none;
  transform: none !important;
  width: 100%;
  height: 100%;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  z-index: 10;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}.videx-container {
  animation: fadeIn 0.3s ease;
}
.videx-container .videx-banner {
  background: linear-gradient(to right, #2563eb, #9333ea);
  color: #fff;
  padding: 10px;
  display: flex;
  justify-content: center;
  font-size: large;
}
.videx-container .videx-content {
  border-radius: 8px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}.settings-container {
  animation: fadeIn 0.3s ease;
}
.settings-container .settings-content {
  padding: 24px;
  border-radius: 8px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}.user-profile-container {
  animation: fadeIn 0.3s ease;
}
.user-profile-container .user-profile-content {
  padding: 24px;
  border-radius: 8px;
}
.user-profile-container .profile-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.user-profile-container .profile-header .profile-avatar {
  width: 100px;
  height: 100px;
  font-size: 2.5rem;
  margin-bottom: 16px;
  background-color: #1976d2;
}
.user-profile-container .profile-header .profile-name {
  margin-bottom: 4px;
  font-weight: 500;
}
.user-profile-container .profile-header .profile-email {
  color: rgba(0, 0, 0, 0.6);
}
.user-profile-container .profile-form {
  max-width: 800px;
  margin: 0 auto;
}
.user-profile-container .profile-form .action-buttons {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  margin-top: 16px;
}
.user-profile-container .profile-form .action-buttons .save-button {
  min-width: 120px;
}
.user-profile-container .profile-form .action-buttons .cancel-button {
  min-width: 120px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: '"Roboto", "Helvetica", "Arial", sans-serif';
  background-color: #f5f5f5;
  color: rgba(0, 0, 0, 0.87);
}

.content-container {
  padding: 16px;
}
@media (min-width: 600px) {
  .content-container {
    padding: 24px;
  }
}
@media (min-width: 960px) {
  .content-container {
    padding: 32px;
  }
}

.page-title {
  margin-bottom: 24px;
  color: rgba(0, 0, 0, 0.87);
  font-weight: 500;
}

.fade-in {
  animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.slide-in {
  animation: slideIn 0.3s ease-in-out;
}

@keyframes slideIn {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}