.auth-pages{
    width: 100vw;
    height: 100vh;
    background-image: url('/assest/background/auth-bg.jpg');
    background-size: 100vw 100vh;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
}
.auth-header{
    position: absolute;
    top: 10px;
    right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-header span{
    font-family: Yaldevi Colombo Medium;
    font-size: 40px;
    font-weight: 500; 
    color: aliceblue;
}
.auth-footer{
    position: absolute;
    bottom: 20px;
    left: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.auth-footer img{
width: 45px;
height: 45px;
}

.register-with-agree{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 22px;
}
.register-with-agree span{
color: #000000;
font-family: MedievalSharp;
font-size: 28px;
font-weight: 500;
position: absolute;
bottom: -50px;
left: -80px;
}
.register-with-agree input[type="checkbox"] {
    appearance: none; /* Remove default styling */
    -webkit-appearance: none; /* For Safari */
    width: 35px;
    height: 35px;
    border: 1px solid #F0DCAE;
    border-radius: 4px;
    background-color: #7B5B7A9C;
    cursor: pointer;
    position: relative;
}

/* Add a style for the "checked" state */


.register-with-agree input[type="checkbox"]:checked::after {
    content: '✔'; /* Unicode checkmark */
    color: #8F8F8F;
    font-size: 30px;
    font-family: MedievalSharp;
font-weight: 500;
    position: absolute;
    top: -5px;
    left: 4px;
}
.input-group-with-err{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}


/* Admin Auth */

.admin-hkj-login-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background: linear-gradient(135deg, #4b79a1, #283e51);
    color: #fff;
    font-family: Arial, sans-serif;
  }
  
  .admin-hkj-login-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  }
  
  .admin-hkj-login-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px 50px 30px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    width: 300px;
  }
  
  .admin-hkj-login-input-group {
    margin-bottom: 15px;
  }
  
  .admin-hkj-login-label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #dfe6e9;
  }
  
  .admin-hkj-login-input {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    outline: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  }
  
  .admin-hkj-login-input:focus {
    border: 2px solid #74b9ff;
    background-color: #ecf0f1;
  }
  
  .admin-hkj-login-button {
    width: 100%;
    padding: 10px;
    background-color: #0984e3;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  .admin-hkj-login-button:hover {
    background-color: #74b9ff;
  }
  