/* Custom styles for the login flow */
.mud-input-outlined .mud-input-slot {
  border-radius: 8px;
}

.mud-input-outlined:not(.mud-input-error):not(.mud-input-disabled):hover .mud-input-slot {
  border-color: #5d2d91;
}

.mud-input-outlined.mud-input-focused .mud-input-slot {
  border-color: #5d2d91;
  border-width: 2px;
}

/* Button hover effects */
.mud-button-filled-primary:hover {
  background-color: #4a1f73 !important;
}

.mud-button-outlined-primary:hover {
  background-color: rgba(93, 45, 145, 0.04) !important;
}

/* Custom app icon styling */
.app-icon {
  width: 120px;
  height: 120px;
  background: #5d2d91;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.app-icon-cross {
  width: 60px;
  height: 60px;
  position: relative;
}

.app-icon-cross::before {
  content: "";
  width: 60px;
  height: 12px;
  background: white;
  border-radius: 6px;
  position: absolute;
  top: 24px;
}

.app-icon-cross::after {
  content: "";
  width: 12px;
  height: 60px;
  background: white;
  border-radius: 6px;
  position: absolute;
  left: 24px;
}

.app-icon-check {
  position: absolute;
  bottom: -8px;
  right: -8px;
  width: 40px;
  height: 40px;
  background: #4caf50;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid white;
}
