* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

  body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #F2F4F7;
  }

  .login-wrapper {
    display: flex;
    flex-direction: row;
    max-width: 750px;
    width: 100%;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    animation: fadeIn 0.6s ease;
  }

  .left-column {
    flex: 1;
    background-color: #eee;
  }

  .left-column img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .right-column {
    flex: 1;
    padding: 1rem 1.7rem 1.7rem 1.7rem;
    display: block;
  }

  .logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2.3rem;
  }

  .logo img {
    height: 70px;

  }

  .input-container {
    position: relative;
    margin-bottom: 1.5rem;
  }

  .input-field {
    width: 100%;
    padding: 0.9rem 2.5rem 0.9rem 0.8rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    background: white;
  }

  .input-label {
    position: absolute;
    left: 12px;
    top: 14px;
    background-color: white;
    padding: 0 4px;
    color: #888;
    font-size: 0.95rem;
    transition: 0.2s ease;
    pointer-events: none;
  }

  .input-field:focus + .input-label,
  .input-field:not(:placeholder-shown) + .input-label {
    top: -8px;
    font-size: 0.75rem;
    color: #5B0F62;
  }

  .toggle-password {
position: absolute;
top: 50%;
right: 12px;
transform: translateY(-50%);
pointer-events: auto;
cursor: pointer;
color: #aaa;
z-index: 1;
}

  .options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
  }

  .remember-me {
    display: flex;
    align-items: center;
  }

  .remember-me input {
    margin-right: 0.4rem;
  }

  .forgot-password {
    color: #5B0F62;
    text-decoration: none;
  }

  .login-button {
    width: 100%;
    padding: 0.8rem;
    border: none;
    background-color: #5B0F62;
    color: white;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  .login-button:hover {
    background-color: #3f0848;
  }
  .input-field.is-invalid {
border-color: #e53935;
box-shadow: none;
}

.input-field.is-invalid + .input-label {
color: #e53935;
}
  @media (max-width: 768px) {
    .login-wrapper {
      flex-direction: column;
      max-width: 90%;
      margin: 1rem;
    }
    .logo img {
      height: 70px;
    }
    .left-column {
      display: none;
    }

    .right-column {
      width: 100%;
      padding: 2rem;
    }
  }

  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }