/* Responsive Styles */
@media (max-width: 992px) {
    .login-page {
        background-size: 100%;
    }
    .top-logo {
        width: 100px;
        top: 10px;
        right: 10px;
    }
}
@media (max-width: 768px) {
    .login-card {
        padding: 20px 10px;
        min-width: 180px;
    }
}
@media (max-width: 480px) {
    .login-card {
        padding: 10px 2px;
        min-width: 120px;
    }
    .top-logo {
        width: 60px;
        top: 4px;
        right: 4px;
    }
}
@font-face {
    font-family: 'TheYearOfTheCamel';
    src: url('/fonts/TheYearofTheCamel-Regular.otf');
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'TheYearOfTheCamel', sans-serif;
}

html, body {
    height: 100%;
    overflow: hidden; /* 🚫 remove scroll */
}

.login-page {
    height: 100vh;
    width: 100%;
    background-image: url('/assets/images/scales-bg.png');
    background-repeat: no-repeat;
    background-size: 60%;
    background-position: left center; /* 👈 move background left */
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}



.top-logo {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 160px;
}

.login-card {
    background: #fff;
    width: 100%;
    max-width: 450px;
    padding: 30px;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,.1);
}

.login-icon {
    width: 110px;
    margin-bottom: 15px;
}

.login-card h1 {
    font-size: 28px;
    color: #01293a;
    margin-bottom: 10px;
}

.login-card p {
    font-size: 16px;
    color: #555;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 15px;
    text-align: right;
}

.form-group label {
    font-size: 14px;
    font-weight: bold;
    color: #01293a;
}

.form-group input {
    width: 100%;
    height: 44px;
    margin-top: 6px;
    padding: 0 12px;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    margin: 15px 0;
}

.form-options a {
    color: #01293a;
    text-decoration: none;
}

button {
    width: 100%;
    height: 46px;
    background: #01293a;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer;
}
.password-group {
    position: relative;
}



.toggle-password {
    position: absolute;
    top: 32px;
    left: 12px; /* RTL */
    cursor: pointer;
    font-size: 18px;
    color: #01293a;
}
.remember_label,.forgot_label{
    font-size: 16px;
}
.remember_label input[type="checkbox"] {
    transform: scale(1.4);   /* 🔥 increase size */
    cursor: pointer;
    margin-left:8px;
}
p.forgot_text{
    line-height: 1.5;
}

.inner-card {
    width: 100%;
    max-width: 420px;
    background: #fff;
    padding: 42px 36px;
    border-radius: 16px;
    box-shadow: 0 10px 45px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 2;
    text-align: right;
}
.success-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: #0f3d3d;
    color: #fff;
    border-radius: 50%;
    font-size: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 6px rgba(15, 61, 61, 0.15);
}

/* ===== Headings ===== */
.inner-card h2.success_title{
    color:  #01293A;
    text-align: center;
    font-family: "TheYearofTheCamel-ExtraBold";
    font-size: 32px;
    font-style: normal;
    font-weight: 900;
    line-height: 150%; /* 48px */
}

.inner-card p.success_desc  {
    font-size: 14px;
    color: #3E3E3E;
    text-align: center;
    font-family: "TheYearofTheCamel-Bold";
    font-size: 20px;
    font-style: normal;
    font-weight: 900;
    line-height: 150%; /* 30px */
}
footer{
    margin-top:-20px;
}
.powered-by-8com {
  	width: 494px;
  	height: 18px;
  	position:absolute;
    right:0px;
  	font-size: 12px;
  	font-weight: 600;
  	font-family: Poppins;
  	color: #626464;
  	text-align: left;
  	display: inline-block;
    direction: ltr;
}
.copyright-2026 {
  	width: 144px;
  	height: 18px;
  	position: absolute;
    left:0px;
  	font-size: 12px;
  	font-weight: 600;
  	font-family: Poppins;
  	color: #626464;
  	text-align: left;
  	display: inline-block;
}


/* 📱 Mobile */
@media (max-width: 480px) {
    .top-logo {
        width: 84px;
    }

    .login-card {
        margin: 76px 29px 20px 27px ;
    }
    .powered-by-8com {
        width:50%;
    }
}
@media (max-width: 992px) {
    .login-page {
        background-size: 80%;
    }
    .powered-by-8com {
        width:50%;
    }
}

@media (max-width: 576px) {
    .login-page {
        background-size: 95%;
    }
    .powered-by-8com {
        width:50%;
    }
}


