* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  height: 100vh;
  overflow: hidden;
}

.login-container {
  height: 100vh;
  background-color: #f5e9fc8a;
  background-image: url(/liendor/assets/images/bg1.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: relative;
}

.login-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 40%;
  right: 0;
  bottom: 0;
  background-image: url(/liendor/assets/images/bg3.svg);
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 1;
}

.row {
  position: relative;
  z-index: 2;
}

.logo-icon {
  width: 72px;
  height: 136px;
  position: relative;
}

.logo-shape {
  width: 100%;
  height: 100%;
  background-image: url(/liendor/assets/images/logo.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

/* Form Styles */
.login-form-wrapper {
  max-width: 520px;
  background: rgb(255 255 255 / 39%);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.form-container {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  width: 100%;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease;
}

.form-container.active {
  opacity: 1;
  visibility: visible;
  position: relative;
  transform: translateY(0);
}

.form-title {
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 32px;
}

.form-label {
  font-size: 16px;
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.custom-input {
  height: 56px;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  padding: 16px;
  font-size: 16px;
  transition: all 0.3s ease;
  background: rgb(255 255 255 / 15%);
}

.custom-input:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
  background: rgb(255 255 255 / 15%);
}

.custom-input::placeholder {
  color: #303030;
}

.toggle-password {
  position: absolute;
  right: 20px;
  top: 50%;
  cursor: pointer;
  color: #1e1e1ebf;
  font-size: 20px;
  user-select: none;
}

.forgot-password-link,
.back-link {
  color: #3b82f6;
  text-decoration: underline;
  font-size: 15px;
  font-weight: 500;
}

.forgot-password-link:hover,
.back-link:hover {
  color: #2563eb;
  text-decoration: underline;
}

.custom-btn {
  height: 56px;
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.custom-btn:hover {
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
}

.terms-text {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.5;
  margin: 0;
}

.terms-link {
  color: #1a1a1a;
  text-decoration: none;
  font-weight: 600;
}

.terms-link:hover {
  color: #3b82f6;
  text-decoration: underline;
}

.decorative-elements {
  width: 100%;
  height: 100%;
}

/* 3D Styles */
.cube {
  animation: float 4s ease-in-out infinite;
}

.cube-2 {
  animation: float 3s ease-in-out infinite;
}

.ai-robot {
  animation: floatDown 4s ease-in-out infinite;
}

.pay-btn {
  animation: float 4s ease-in-out infinite;
}

.pen-icon {
  animation: move 2s infinite alternate;
}

.pay-btn-app {
  animation: bounce 2s ease-in-out infinite;
}

.balance-value-1 {
  animation: blurAnimation 2s ease-in-out infinite;
}

.balance-value-2 {
  animation: blurAnimation 4s ease-in-out infinite;
}

.balance-value-3 {
  animation: blurAnimation 2s ease-in-out infinite;
}

.balance-value-4 {
  animation: blurAnimation 3s ease-in-out infinite;
}

.rotate-shape {
  animation: spin 4s linear infinite;
  transform-origin: center;
  transform-box: fill-box;
}

/* Animations */
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes floatDown {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(20px);
  }
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes move {
  to {
    transform:  translate(38px, 25px);
  }
}

@keyframes scaleUp {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.1);
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes blurAnimation {
  0%, 100% {
    filter: blur(0px);
  }
  50% {
    filter: blur(4px);
  }
}
/* Responsive Design */
@media (max-width: 991.98px) {
  .login-form-wrapper {
    margin: 20px;
    padding: 30px;
  }
  
  .form-title {
    font-size: 24px;
  }
}

@media (max-width: 575.98px) {
  .login-form-wrapper {
    margin: 10px;
    padding: 20px;
  }
  
  .form-title {
    font-size: 20px;
  }
  
  .custom-input {
    height: 48px;
  }
  
  .custom-btn {
    height: 48px;
  }
}
