/* General reset and body styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
  }
  
  body, html {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #1c60c7;
  }
  
  /* Container styling */
  div {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    animation: fadeIn 1s ease-in-out;
  }
  
  h2 {
    font-size: 1.8rem;
    color: #333333;
    text-align: center;
    margin-bottom: 1rem;
    animation: slideDown 1s ease-in-out;
  }
  
  form div {
    margin-bottom: 1.5rem;
  }
  
  label {
    display: block;
    font-size: 0.9rem;
    color: #666666;
    margin-bottom: 0.3rem;
  }
  
  input {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #cccccc;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s;
  }
  
  input:focus {
    border-color: #007bff;
    outline: none;
  }
  
  /* Button styling */
  button {
    width: 100%;
    background-color: #007bff;
    color: #ffffff;
    padding: 0.8rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  button:hover {
    background-color: #0056b3;
  }
  
  /* Animations */
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  