html {
  font-size: 12px;
}

@media (min-width: 768px) {
  html {
    font-size: 14px;
  }
}


html {
  position: relative;
  min-height: 100%;
}



/* Nav container */
.my-navbar {
    position: fixed;
    top: 0;
    width: 100%;
   /* z-index: 1000;*/ /**/ /* Keeps it above other content */
    background-color: white; /* or your navbar background */
    box-shadow: 0 2px 5px rgba(0,0,0,0.1); /* Optional shadow for depth */
    border-bottom: 1px solid #e5e5e5;
    padding: 10px 20px;

}

/* Remove list styling */
.nav-links {
    list-style: none;
    display: flex;
    justify-content: flex-end;  /* Align links to the right */
    margin: 0;
    padding: 0;
    gap: 20px; /* space between links */
}

/* Style each link */
.nav-links a {
    text-decoration: none;
    color: #666;
    font-weight: 500;
    padding: 8px 12px;
    transition: background-color 0.3s ease;
}

.nav-links a:hover {
    color: #ff6a00;
    border-radius: 1px;
    font-size: 14px;
}
.my-navbar:hover {
    color: blue;
    border-radius: 1px;
}


/* Make text center aligned on very small screens */
@media (max-width: 576px) {
    .navbar-links {
        justify-content: center;
    }
}
/* Change the default button color */
.log-btn {
    width: 350px;
    padding: 12px;
    background-color: #1b6ec2;
    color: white;
    font-size: 14px;
    margin-bottom: 10px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
/* Change the default button color */
chkradio{
    color: white;
    margin: auto;
}
/* Make all form inputs rounded */
.form-control {
    border-radius: 10px;
    margin-top: auto;
    margin-bottom: 20px;
    width: 350px;
    
}


/* make the form body styled*/
.form-body {
    background-color: #363615;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    width: 450px;
    margin: 60px auto;
    display: flex;
    flex-direction: column;
    align-items: center; /* Horizontal center */
    justify-content: center;
}


/*this style the heading one(all)*/
h1 {
    color:white;
    margin-bottom:30px;
}

.password-wrapper {
    width: 100%;
}

.password-wrapper input {
    width: 100%;
    padding-right: 40px; /* space for the eye icon */
    box-sizing: border-box;
}

.toggle-password {
    position: absolute;
    top: 40%;
    right: 10px;
    transform: translateY(-50%);
    cursor: pointer;
    color: #666;
    font-size: 1rem;
}
@media screen and (max-width: 768px) {
    .sidebar {
        width: 100%;
        height: auto;
        position: relative;
    }

    .main-content {
        margin-left: 0;
       
    }
    .icon {
        width: 20px;
        filter: invert(27%) sepia(81%) saturate(1115%) hue-rotate(180deg) brightness(95%) contrast(90%);
    }

    .error-message {
        font-size: 10px;
        font-weight: normal;
        text-align: center;
        color: #ff0000; /* Bootstrap danger red */
        margin-top: 1rem;
    }

   

}