* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
  }
  
  /* Centering the login container */
  body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f5f5f5;
  }
  
  /* Styling the login box */
  .login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 70px;
    width: 68%;
  }
  
  .login-box {
    max-width: 400px;
    width: 100%;
    text-align: center;
  }
  
  /* Header styling */
  h2 {
    margin-bottom: 10px;
    font-size: 28px;
    color: #333;
  }
  
  /* Adding a paragraph for the welcome text */
  .login-text {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
  }
  
  /* Input fields styling */
  .textbox {
    margin-bottom: 20px;
  }
  
  .textbox input {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    border: 2px solid #ddd;
    border-radius: 8px;
    transition: border-color 0.3s ease;
  }
  
  .textbox input:focus {
    border-color: #007bff;
    outline: none;
  }
  
  /* Button styling */
  .btn {
    width: 100%;
    padding: 15px;
    background-color: #007bff;
    color: #fff;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .btn:hover {
    background-color: #0056b3;
  }
  
  /* Remember me checkbox styling */
  .remember-me {
    margin-bottom: 20px;
    text-align: left;
  }
  
  .remember-me input {
    margin-right: 10px;
  }
  
  /* Forgot password link */
  .forgot-password a {
    color: #007bff;
    text-decoration: none;
    font-size: 14px;
  }
  
  .forgot-password a:hover {
    text-decoration: underline;
  }
  



  .messages {
    padding: 15px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    transition: all 0.4s ease-in-out;
    margin-bottom: 10px;
    background-color: #f13d3d2e;
  }