/*************************************MY CSS*******************************************/

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    background-color: #f8f9fa; /* Light gray background */
  }

.logo {
    margin-bottom: 10px; /* Add spacing below the logo */
    transform: translateX(-10px); /* Moves the logo slightly to the left */
  }
  
  .logo img {
    max-width: 100px; /* Adjust size as needed */
    height: auto;
    display: block; /* Ensures the image behaves like a block element */
    margin: 0 auto; /* Centers the image horizontally */
  }
  
  
  .login-box {
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    text-align: left;
  }
  
  .login-box h2 {
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
    color: #333;
  }
  
  .input-group {
    display:flex;
    align-items: center;
  }
  
  .input-group-text, 
  .form-control, 
  #togglePassword {
    height: 40px; /* Ensure all elements are the same height */
  }
  
  .input-group-text {
    font-size: 1.2rem; /* Size for the icons */
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .form-control {
    font-size: 1rem;
    box-sizing: border-box;
  }
  
  #togglePassword {
    border: 1px solid #ced4da; /* Match the border style of the input */
    border-left: none; /* Remove left border to align with input field */
    background-color: #f8f9fa;
    font-size: 0.9rem; /* Adjust font size to match input */
    padding: 0 10px;
  }
  

  /* Add hover effect for togglePassword */
  #togglePassword:hover {
    background-color: #3c3d3e;
  }