/* Login Page Style */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    height: 100vh;
    background-color: #f8f9fa;
  }

  .login-container {
    display: flex;
    flex: 1;
    height: 100%;
  }

  .login-image {
    flex: 1;
    background-image: url('https://img.freepik.com/premium-photo/group-three-men-collaborates-spacious-warehouse-diligently-ai-photo_1192063-49199.jpg?w=740');
    background-size: cover;
    background-position: center;
  }

  .login-form {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    background-color: #ffffff;
  }

  .login-form-content {
    width: 100%;
    max-width: 400px;
    background-color: #ffffff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  }

  .login-form h2 {
    font-weight: 500;
    margin-bottom: 20px;
    color: #0c5460;
    text-align: center;
  }

  .form-group {
    position: relative;
    margin-bottom: 20px;
  }

  .form-control {
    border-radius: 4px;
    border: 1px solid #ced4da;
    padding-left: 50px;
    font-size: 14px;
    height: 40px;
  }

  .form-control:focus {
    border-color: #0c5460;
    box-shadow: none;
  }

  .form-group .input-icon {
    position: absolute;
  left: 0;
  top: 0;
  height: 55%;
  width: 40px;
  background-color: #0c5460;
  color: #ffffff;
  display: flex
;
  align-items: center;
  justify-content: center;
  border-radius: 4px 0 0 4px;
  margin-top: 32px;
  border: 1px solid #0c5460;
  }

  .form-group .toggle-password {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #6c757d;
  }

  .btn-primary {
    background-color: #0c5460;
    border: none;
    height: 40px;
    font-size: 16px;
    font-weight: 500;
  }

  .btn-primary:hover {
    background-color: #0c5460;
  }

  .form-group label {
    font-weight: 500;
    color: #495057;
  }

  .links {
    text-align: center;
    margin-top: 15px;
  }

  .links a {
    color: #0c5460;
    text-decoration: none;
  }

  .links a:hover {
    text-decoration: underline;
  }
  .view-pass {
  padding-top: 35px;
  color: #0c5460;
}
  @media (max-width: 768px) {
    .login-container {
      flex-direction: column;
    }

    .login-image {
      height: 40vh;
      flex: none;
    }

    .login-form {
      padding: 20px;
    }
  }
/* Register Page Style */
.error-div
{
  color: #d10000;
  /* margin-top: -10px; */
  margin-bottom: 5px;
}