@import url('https://fonts.googleapis.com/css2?family=Oxanium:wght@500;700&display=swap');

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  background: #121217;
  color: #eee;
  font-family: 'Oxanium', sans-serif;
}

.container {
  display: flex;
  height: 100vh;
}
.left, .right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.left {
  background: #1b1b24;
}
.right {
  background: #181824;
}

.box {
  background: #1f1f2c;
  padding: 30px;
  width: 320px;
  border-radius: 8px;
  box-shadow: 0 0 5px #6b00ff;
  position: relative;
}

h2 {
  margin-top: 0;
  color: #c0aaff;
  font-size: 1.5rem;
}
.icon {
  margin-right: 8px;
}

label {
  display: block;
  margin: 1rem 0 0.3rem;
  font-size: 0.9rem;
}
input[type="text"],
input[type="password"] {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #333;
  border-radius: 4px;
  background: #2a2a36;
  color: #eee;
}
input:focus {
  outline: none;
  border-color: #6b00ff;
  box-shadow: 0 0 5px #6b00ff;
}

.btn {
  width: 100%;
  margin-top: 1rem;
  padding: 0.7rem;
  border: none;
  border-radius: 4px;
  background: linear-gradient(90deg, #6b00ff, #c282ff);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  animation: glow 2s infinite;
}

@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 5px #c282ff;
  }
  50% {
    box-shadow: 0 0 20px #6b00ff;
  }
}

.error {
  color: #ff6b6b;
  margin-bottom: 1rem;
}
.switch {
  text-align: right;
  margin-top: 0.5rem;
}
.switch a {
  color: #c0aaff;
  text-decoration: none;
  font-size: 0.85rem;
}
.switch a:hover {
  text-decoration: underline;
}
.view {
  display: none;
  opacity: 0;
  transition: opacity 0.3s;
}
.view.active {
  display: block;
  opacity: 1;
}

.slideshow-container {
  position: relative;
  width: 100%;
  height: 100%;
  margin-left: 50px;
  margin-right: 50px;
  overflow: hidden;
}
.slide {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
}
.slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 180px;
  box-shadow: 0 0 5px #c282ff;

}
.fade {
  animation: fade 1s;
}
@keyframes fade {
  from { opacity: 0.4; }
  to   { opacity: 1; }
}

.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  padding: 12px;
  color: #fff;
  font-size: 1.125rem;
  font-weight: bold;
  background: rgba(0,0,0,0.5);
  user-select: none;
  transform: translateY(-50%);
  border-radius: 3px;
}
.prev {
  left: 0;
  border-radius: 0 3px 3px 0;
}
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}
.prev:hover,
.next:hover {
  background: rgba(0,0,0,0.8);
}

.dots-container {
  position: absolute;
  bottom: 1rem;
  width: 100%;
  text-align: center;
}
.dot {
  cursor: pointer;
  height: 10px;
  width: 10px;
  margin: 0 4px;
  background: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background 0.6s ease;
}
.active-dot,
.dot:hover {
  background: #717171;
}
