* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.left {
    display: flex;
    height: 100vh;
    background-color: #ffffff !important;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.right {
    display: flex;
    height: 100vh;
    background-color: #F4F4F4 !important;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.login-container {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 60px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.login-container h2 {
    font-size: 18px;
    margin-bottom: 10px;
}

.login-container h4 {
    font-size: 12px;
    color: #6c757d;
    margin-bottom: 20px;
}

.login-container hr {
    border-top: 1px solid #dee2e6;
    margin: 20px 0;
}

.form-control {
    border-radius: 5px;
}

.form-control:focus {
    box-shadow: none;
    border-color: #4986e7;
}

.btn-primary {
    width: 100%;
    border-radius: 5px;
    background-color: #4986e7;
    border: none;
    margin-bottom: 10px !important;
}

.btn-primary:hover {
    background-color: #4986e7;
}

.btn-danger {
    width: 100%;
    border-radius: 5px;
    border: none;
}

.forgot-password,
.register-link {
    display: block;
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    text-decoration: none;
    color: #111111;
}

.forgot-password:hover,
.register-link:hover {
    text-decoration: underline;
}

label {
    font-size: 12px;
}

::placeholder {
    font-size: 11px;
}

.text {
    background-color: rgb(240, 236, 236);
    align-items: center !important;
    text-align: center !important;
    border-radius: 10px;
    padding: 25px;
}

.btn {
    margin: 10px;
    padding: 10px;
    background-color: rgb(58, 166, 255);
    color: white;
    text-decoration: none;
    border-radius: 5px !important;
    border: none !important;
}

.logout-icon {
    position: fixed;
    top: 15px;
    left: 15px;
    font-size: 18px;
    color: #d9534f;
    background: #fff;
    padding: 10px;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
}

.logout-icon:hover {
    box-shadow: 0 0 15px rgba(217, 83, 79, 0.5);
}

.table-actions i {
    font-size: 1.2rem;
    cursor: pointer;
    margin: 0 5px;
}

.table-actions i:hover {
    opacity: 0.7;
}

.container {
    max-width: 100%;
}
.home-button {
    position: fixed;
    left: 10px;
    top: 5%;
    transform: translateY(-50%);
    text-align: center;
    z-index: 999;
}

.home-button a {
    background-color: transparent;
    border: 2px solid #397C8F;
    color: #397C8F;
    border-radius: 50%;
    padding: 10px 14px;
    display: inline-block;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
}

.home-button a:hover {
    background-color: #397C8F;
    color: white;
}

.home-button-text {
    font-size: 12px;
    color: #397C8F;
    margin-top: 5px;
}




  
    body, html {
      height: 100%;
      margin: 0;
    }

    #loginPage {
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100vh;
      background: linear-gradient(to right, #f0f0f0 50%, #ffffff 50%);
    }

    .login-container {
      width: 100%;
      max-width: 700px;
      background-color: #FFF;
      padding: 40px;
      border-radius: 12px;
      box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    }

 

    .home-button a {
      color: #07384E;
    }

    @media (max-width: 768px) {
      #loginPage {
        background: #f0f0f0;
        padding: 20px;
      }

      .login-container {
        max-width: 100%;
        padding: 30px;
      }
    }
    .hidden {
      display: none;
    }
  