/* Login Layout Custom Styles */
:root {
    --gradient-start: #667eea;
    --gradient-end: #764ba2;
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --text-purple: #667eea;
}

body {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    position: relative;
    overflow-x: hidden;
}

/* Animated background pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
    position: relative;
    z-index: 1;
}

.brand-logo {
    text-align: center;
    margin-bottom: 2rem;
    animation: fadeInDown 0.6s ease-out;
}

.brand-logo img {
    animation: logoFloat 3s ease-in-out infinite;
}

.brand-logo h1 {
    color: white;
    font-size: 2.5rem;
    font-weight: 300;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.2);
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

.brand-logo p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    margin-top: 0.5rem;
    font-weight: 400;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
}

/* Floating decorative elements */
.floating-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.floating-element {
    position: absolute;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.floating-element:nth-child(1) {
  width: 100px;
    height: 100px;
    top: 10%;
left: 10%;
    animation-delay: 0s;
    animation-duration: 10s;
}

.floating-element:nth-child(2) {
    width: 70px;
    height: 70px;
    top: 20%;
    right: 15%;
    animation-delay: 2s;
    animation-duration: 12s;
}

.floating-element:nth-child(3) {
    width: 130px;
    height: 130px;
    bottom: 15%;
    left: 12%;
    animation-delay: 4s;
    animation-duration: 14s;
}

.floating-element:nth-child(4) {
    width: 90px;
    height: 90px;
    bottom: 25%;
  right: 18%;
    animation-delay: 1s;
    animation-duration: 11s;
}

.floating-element:nth-child(5) {
    width: 60px;
    height: 60px;
    top: 50%;
    left: 5%;
    animation-delay: 3s;
    animation-duration: 9s;
}

.floating-element:nth-child(6) {
    width: 80px;
    height: 80px;
    top: 60%;
    right: 8%;
    animation-delay: 5s;
    animation-duration: 13s;
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0px) translateX(0px) rotate(0deg); 
        opacity: 0.3;
    }
    25% {
    transform: translateY(-30px) translateX(15px) rotate(90deg);
        opacity: 0.5;
  }
    50% { 
        transform: translateY(-15px) translateX(-15px) rotate(180deg); 
        opacity: 0.4;
    }
    75% {
      transform: translateY(-35px) translateX(10px) rotate(270deg);
        opacity: 0.6;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
  transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
      transform: translateY(30px);
    }
    to {
        opacity: 1;
     transform: translateY(0);
    }
}

@keyframes logoFloat {
    0%, 100% {
 transform: translateY(0px);
    }
    50% {
  transform: translateY(-10px);
    }
}

/* Utility classes for spacing */
.me-2 {
    margin-right: 0.5rem;
}

.mr-2 {
    margin-right: 0.5rem;
}

.ml-2 {
    margin-left: 0.5rem;
}

.ml-3 {
    margin-left: 0.75rem;
}

.ms-2 {
    margin-left: 0.5rem;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}
