

























* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
  }
  
  body {
    background: #fff8e1;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .image-container{
    display: flex;
    /* margin: 0px auto; */
    justify-content: center;
  }
  
  .form-wrapper {
    width: 90%;
    max-width: 450px;
    background: #ffffff;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-left: 5px solid #FFA500;
    border-radius: 8px;
  }
  
  .login-form h2 {
    margin-bottom: 25px;
    color: #FFA500;
    font-size: 28px;
    border-bottom: 2px solid #FFA500;
    padding-bottom: 10px;
    /* display: inline-block; */
    text-align: center;
  }
  
  .login-form label {
    display: block;
    margin: 15px 0 5px;
    font-weight: bold;
    color: #333;
  }
  
  .login-form input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    transition: border 0.3s ease;
  }
  
  .login-form input:focus {
    border-color: #FFA500;
    outline: none;
  }
  
  .login-form button {
    width: 100%;
    padding: 12px;
    background-color: #FFA500;
    border: none;
    color: white;
    font-weight: bold;
    font-size: 16px;
    border-radius: 5px;
    margin-top: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .login-form button:hover {
    background-color: #e58e00;
  }
  
  .footer-text {
    margin-top: 15px;
    font-size: 14px;
    text-align: center;
    color: #666;
  }
  
  .footer-text a {
    color: #FFA500;
    text-decoration: none;
  }
  