/* Reset some default styles for a clean slate */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f7fc;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    flex-direction: column;
  }
  
  .container {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    text-align: center;
  }
  
    /* Logo Container */
    .logo-container {
      text-align: center;
      margin-top: 20px;
    }
    
    .logo {
      max-width: 150px; /* Adjust the size of the logo */
      height: auto;
    }
    
  header h1 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
  }
  
  form {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  label {
    text-align: left;
    font-size: 14px;
    color: #555;
    font-weight: 500;
  }
  
  input {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
    width: 100%;
  }
  
  input:focus {
    border-color: #5b9df9;
    outline: none;
  }
  
  button {
    padding: 12px;
    background-color: #5b9df9;
    color: white;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  button:hover {
    background-color: #4a8bf5;
  }
  
  footer {
    margin-top: 20px;
    font-size: 12px;
    color: #777;
  }
  
  footer p {
    text-align: center;
  }
  
  /* Mobile-friendly styles */
  @media (max-width: 480px) {
    body {
      padding: 10px;
    }
  
    .container {
      padding: 20px;
      width: 100%;
    }
  
    header h1 {
      font-size: 20px;
    }
  
    input,
    button {
      font-size: 14px;
    }
  }
  