    body {
      font-family: Arial, sans-serif;
      background-color: #fff;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      height: 100vh;
      margin: 0;
    }
 
    .logo{
      text-align: center;
      margin-bottom: 20px;
    }
 
    .logo img {
      display: block;
      width: 450px;
      height: auto;
      margin: 0 auto;
    }
 
    .logo h1 {
      font-size: 24px;
      margin: 10px 0 5px;
    }
 
    .logo p {
      font-size: 14px;
      margin: 0;
    }
 
    #secure-login-form {
      background-color: #fff;
      padding: 20px;
      border: 1px solid #ccc;
      border-radius: 8px;
      box-shadow: 0 0px 8px #64a7ef96;
    }
 
    .form-control {
      width: 100%;
      padding: 10px;
      margin-bottom: 10px !important;
      /* background-color: #e6f0ff; */
      font-size: 16px;
      box-sizing: border-box;
	  border-radius:5px !important;
    }
 
    .show-password-container {
      display: flex;
      justify-content: center;
      align-items: center;
      margin-bottom: 10px;
    }
 
    .show-password-container input[type="checkbox"] {
      margin-right: 5px;
    }
 
    .label-password {
      text-align: center;
      margin-bottom: 10px;
    }
 
    #secure-login-btn {
      width: 100%;
      padding: 10px;
      background-color: #f0f0f0;
      color: #b4d3c5;
      font-size: 16px;
      border: none;
      cursor: not-allowed;
      border-radius: 4px;
    }
 
    #secure-login-btn:enabled {
      background-color: #007bff;
      color: #fff;
      cursor: pointer;
    }
 
    .forgot-password {
      text-align: center;
      margin-top: 10px;
    }
 
    .forgot-password a {
      font-size: 14px;
      text-decoration: none;
      color: #007bff;
    }
