* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  body {
    font-family: Arial, sans-serif;
    height: 100vh;
    background: linear-gradient(120deg, #89f7fe, #66a6ff);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeInUp 0.8s ease-out;
  }
  
  .login-container {
    background: white;
    padding: 2em;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    width: 300px;
    text-align: center;
    animation: fadeInUp 0.8s ease-out;
  }
  
  .login-container h1 {
    margin-bottom: 1em;
  }
  
  .form input {
    width: 100%;
    padding: 0.7em;
    margin-bottom: 1em;
    border: 1px solid #ccc;
    border-radius: 5px;
    transition: border-color 0.3s;
  }
  
  .form input:focus {
    border-color: #66a6ff;
    outline: none;
  }
  
  .form button {
    width: 100%;
    padding: 0.7em;
    border: none;
    border-radius: 5px;
    background-color: #66a6ff;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.1s;
  }
  
  .form button:hover {
    background-color: #558de8;
  }
  
  .form button:active {
    transform: scale(0.98);
  }
  
  .switch-btn {
    margin-top: 0.5em;
    background-color: transparent;
    border: 1px solid #66a6ff;
    color: #66a6ff;
    padding: 0.5em;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
  }
  
  .switch-btn:hover {
    background-color: #66a6ff;
    color: white;
  }

  #toggle-text {
    padding: 15px;
  }
  
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  