.logo-top-right {
  position: absolute;
  top: 1.5rem;
  left: 2rem;
  z-index: 100;
}

.logo-top-right .header__logo-img {
  width: 120px;
  height: auto;
}

@media (max-width: 600px) {
  .logo-top-right {
    top: 0.75rem;
    right: 1rem;
  }

  .logo-top-right .header__logo-img {
    width: 90px;
  }


  .form-group input {
    font-size: 1rem;
    padding: 0.6rem;
  }


}

:root {
  --background: #09090b;
  --foreground: #fafafa;
  --primary: #facc15;
  --primary-foreground: #000;
  --border: #27272a;
  --muted: #18181b;
  --card: #18181b;
  --text-gray: #a1a1aa;
  --golden: #FFA629;
}









.last {
  text-align: center;
  color: var(--foreground);
  font-size: 13px;
  margin-top: 2rem;
}

.last p {
  text-align: center;
}

/* Yellow highlight for terms links in sign-up */
.text {
  color: #facc15;

  cursor: pointer;
}




.option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.2rem;
  margin-top: 1rem;
}




.login-btn a {
  text-decoration: none;

}

.login-btn {
  color: var(--background);
}

.error-message {
  color: #ff4d4f;
  font-size: 12px;
  margin-top: 5px;
 
  visibility: hidden;
}

.error-message.show {
  visibility: visible;
}

.form-group.invalid input {
  border-color: #ff4d4f;
}

.shake {
  animation: shake 0.5s;
}

@keyframes shake {

  0%,
  100% {
    transform: translateX(0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    transform: translateX(-5px);
  }

  20%,
  40%,
  60%,
  80% {
    transform: translateX(5px);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .login-content {
    flex-direction: column;
    height: auto;
  }

  .login-text,
  .right-panel {
    flex: none;
    width: 100%;
    border-radius: 12px;
    padding: 2rem 1rem;
  }




}

@media (max-width: 768px) {
  .login-content {
    flex-direction: column;
    height: auto;
  }

  .login-text,
  .right-panel {
    flex: none;
    width: 100%;
    border-radius: 12px;
    padding: 2rem 1rem;
    box-sizing: border-box;


  }


  .form-container {
    width: 100%;
    padding: 2rem;

  }



  .hero-img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  .social-login {
    flex-direction: column;
    gap: 0.75rem;
    margin: 1rem 0;
  }

  .social-login button {
    width: 100%;
  }

  .login-btn {
    width: 100%;
  }
}

@media (max-width: 480px) {



  .last p {
    text-align: center;
    color: var(--foreground);
    font-size: 13px;
    margin-top: 1rem;
  }



}
/* Notification  */
.notification-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    max-width: 350px;
}

.notification {
    position: relative;
    padding: 15px 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    color: white;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    transform: translateX(100%);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.notification.show {
    transform: translateX(0);
    opacity: 1;
}

.notification.hide {
    transform: translateX(100%);
    opacity: 0;
}
 .notification.success {
        color: black;
        background: #cbedddff;
        border-left: 4px solid #28a745;
    }

    .notification.success i {
        color: #28a745;
    }

    .notification.error {
      color:black;
        background: #ffe6e6;
        border-left: 4px solid #dc3545;
    }

    .notification.error i {
        color: #dc3545;
    }


.notification.warning {
    background-color: #f59e0b;
    border-left: 4px solid #b45309;
}

.notification.info {
    background-color: #3b82f6;
    border-left: 4px solid #1d4ed8;
}

.notification i {
    margin-right: 10px;
    font-size: 1.2rem;
}

.notification-close {
    margin-left: 15px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.notification-close:hover {
    opacity: 1;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeOut {
    from { opacity: 1; transform: translateY(0); }
    to { opacity: 0; transform: translateY(-20px); }
}
