/* Cài đặt chung cho toàn bộ trang */
body {
    font-family: 'Comic Sans MS', cursive, sans-serif; /* Sử dụng font chữ dễ thương */
    background: #f0fff0; /* Nền xanh nhạt tạo cảm giác tươi mát */
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
  }
  
  /* Animation keyframes */
  /* Hiệu ứng fadeIn cho container đăng nhập */
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(-20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Hiệu ứng bounce cho tiêu đề */
  @keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
      transform: translateY(0);
    }
    40% {
      transform: translateY(-10px);
    }
    60% {
      transform: translateY(-5px);
    }
  }
  
  /* Container chứa form đăng nhập */
  .login-container {
    background: #ffffff;
    border: 1px solid #dcdcdc;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 300px;
    animation: fadeIn 0.8s ease-out;
  }
  
  /* Kiểu form đăng nhập */
  .login-form h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #28a745; /* Xanh lá cây đậm */
    animation: bounce 1s ease;
  }
  
  .form-group {
    margin-bottom: 15px;
  }
  
  /* Hiệu ứng slideIn nhẹ cho các input khi trang tải */
  @keyframes slideIn {
    from {
      opacity: 0;
      transform: translateX(-20px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  .form-group label {
    display: block;
    margin-bottom: 5px;
    color: #333;
  }
  
  .form-group input {
    width: 100%;
    padding: 5px 0px 5px 10px;
    margin-left:-5px;

    border: 1px solid #ccc;
    border-radius: 4px;
    animation: slideIn 0.5s ease-out;
  }
  
  /* Nút đăng nhập */
  .btn-login {
    display: block;
    width: 100%;
    background-color: #28a745; /* Nút xanh lá cây */
    border: none;
    border-radius: 20px;
    color: #fff;
    padding: 10px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
  }
  
  .btn-login:hover {
    background-color: #218838;
    transform: scale(1.05);
  }
  
  /* Đường dẫn chuyển hướng đăng ký */
  .login-link {
    text-align: center;
    margin-top: 15px;
  }
  
  .login-link a {
    color: #28a745;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
  }
  
  .login-link a:hover {
    text-decoration: underline;
    color: #1e7e34;
  }
  