* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Roboto', sans-serif;
}

body {
  background: #fff;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.login-container {
  display: flex;
  width: 98%;
  height: 97vh;
  overflow: hidden;
}

/* Leva sekcija */
.login-left {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: top;
  padding: 0 80px;
}

.logo {
  width: 155px;
  margin-bottom: 180px;
}

h1 {
  font-size: 40px;
  color: #252527;
  font-weight: 600;
}

.subtitle {
  color: #85878B;
  margin-bottom: 40px;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.login-form label {
  font-weight: 500;
  color: #121212;
  font-size: 14px;
}

.login-form input {
  padding: 12px;
  border: 1px solid #E9ECEF;
  border-radius: 10px;
  font-size: 14px;
  color: #252527;
}

.forgot {
  align-self: flex-end;
  color: #1084FB;
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
}

.btn {
  background: #E7E7E7;
  color: rgba(18, 18, 18, 0.24);
  border: none;
  border-radius: 12px;
  padding: 12px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 20px;
}

.btn:hover {
  background: #1084FB;
  color: white;
}

/* Desna sekcija */
.login-right {
  width: 50%;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay1 {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 80px 180px;
  background: linear-gradient(180deg, rgba(214, 94, 14, 0.00) 0%, rgba(214, 94, 14, 0.90) 85.73%);
  color: white;

}

.overlay2 {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 80px 180px;
  background: linear-gradient(180deg, rgba(133, 33, 185, 0.00) 0%, rgba(133, 33, 185, 0.90) 85.73%);
  color: white;

}

.overlay3 {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 80px 180px;
  background: linear-gradient(180deg, rgba(214, 94, 14, 0) 0%, #25928A 85.73%);
  color: white;
}

.quote {
  color: #FFF;
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 42px;
  /* 131.25% */
  letter-spacing: -1px;


  margin-bottom: 20px;
}

.dots {
  position: absolute;
  bottom: 40px;
  left: 40px;
  display: flex;
  gap: 10px;
  z-index: 10;
}

.dot {
  width: 12px;
  height: 12px;
  background: white;
  opacity: 0.3;
  border-radius: 50%;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.dot.active {
  opacity: 1;
}