body {
    background: url('images/safety_login.jpg') no-repeat center center fixed;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0 6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-size: cover;
    justify-content: flex-end;
  }
  
  .login-wrapper {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
  }
  
  .logo-img {
    display: block;
    margin: 0 auto 1.5rem;
    width: 180px;
  }
  
  label {
    display: block;
    margin-bottom: 0.3rem;
  }
  
  input[type="text"],
  input[type="password"],
  input[type="email"] {
    width: 94%;
    padding: 0.75rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 6px;
  }
  
  .password-wrapper {
    position: relative;
  }
  
  .toggle-password {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    cursor: pointer;
    color: #888;
  }
  
  .btn-login {
    width: 100%;
    background-color: #a56cc8;
    color: white;
    border: none;
    padding: 0.75rem;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
  }
  
  .alert {
    margin-top: 1rem;
    padding: 0.75rem;
    border-radius: 6px;
    font-size: 0.9rem;
  }
  
  .alert-danger {
    background: #fdecea;
    color: #d93025;
  }
  
  .alert-success {
    background: #e6f4ea;
    color: #188038;
  }
  
  .hidden {
    display: none;
  }
  
  .visible {
    display: block;
  }
  
  @media (max-width: 480px) {
    .login-wrapper {
      padding: 1rem;
    }
  }
  