/* public/styles-login.css */

/* Reset some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #1f1c2c, #290eb0);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: #ffffff;
    overflow: hidden;
  }
/* Glassmorphism Container */
.login-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 40px 30px;
    width: 350px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
  }
  
  
  .login-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(45deg);
    z-index: 0;
  }
  
  .login-container h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 24px;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
  }
  
  .login-container input {
    width: 100%;
    padding: 12px 15px;
    margin: 10px 0;
    border: none;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-size: 14px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: background 0.3s ease;
    position: relative;
    z-index: 1;
  }
  
  .login-container input::placeholder {
    color: #e0e0e0;
  }
  
  .login-container input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.3);
  }
  
  .login-container button {
    width: 100%;
    padding: 12px 15px;
    margin-top: 15px;
    background: linear-gradient(135deg, #6b73ff, #000dff);
    border: none;
    color: #ffffff;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s ease, transform 0.2s ease;
    position: relative;
    z-index: 1;
  }
  
  .login-container button:hover {
    background: linear-gradient(135deg, #000dff, #6b73ff);
    transform: translateY(-2px);
  }
  
  .error-message {
    color: #ff6b6b;
    text-align: center;
    margin-bottom: 15px;
    font-size: 14px;
    position: relative;
    z-index: 1;
  }
  
  /* Add some decorative elements */
  body::before, body::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    top: -100px;
    left: -100px;
    animation: float 6s infinite ease-in-out;
    z-index: 0;
  }
  
  body::after {
    top: auto;
    bottom: -150px;
    left: auto;
    right: -150px;
    animation-duration: 8s;
  }
  
  @keyframes float {
    0%, 100% {
      transform: translateY(0) rotate(0deg);
    }
    50% {
      transform: translateY(20px) rotate(360deg);
    }
  }
  
  /* Responsive Design */
  @media (max-width: 400px) {
    .login-container {
      width: 90%;
      padding: 30px 20px;
    }
  }