html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

.bg-cover {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: url(../images/tesdabg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1; /* Push it behind other content */
}

.content {
    position: relative;
    z-index: 1;
    /* Optional padding/margin for content */
}

.card,
.card * {
    cursor: default !important;
    user-select: none;
}



.login-card {
    width: 400px;
   height: 100%;
    border-radius: 10px;
    background: #fff;
}

h2 {
    color: #007bff;
}

.form-label {
    font-weight: bold;
}

.input-group-text {
    cursor: pointer;
}

.btn-primary {
    background-color: #007bff;
    border: none;
}

.btn-success {
    background-color: #28a745;
    border: none;
}

.btn-primary:hover, .btn-success:hover {
    opacity: 0.9;
}

/* SA MODAL NG VIEW */
/* BACKROUND */


.darkmode {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(34, 34, 34, 0.347);
    animation: moveOverlay 60s infinite linear;
    background-size: cover;
}


/* Logo */
.logo{
    width: 100%;
    max-width: 150px;
    margin-bottom: 10px;
}

hr{
    margin-top: -10px;
    height: 5px;
}

/* Form container */

/* Logo */
.logo{
    width: 100%;
    max-width: 150px;
    margin-bottom: 10px;
}

hr{
    margin-top: -10px;
    height: 5px;
}




/* OLD STYLE */


body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    text-align: center;
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background:rgba(0, 0, 6, 0.859);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}
.navbar a {
    color: white;
    text-decoration: none;
   margin-right: 30px;
    font-size: 1rem;
}

.menu {
    display: flex;
}




.menu-toggle {
    margin-right: 30px;
    display: none;
    flex-direction: column;
    cursor: pointer;
}
.bar {
    background: white;
    height: 3px;
    width: 25px;
    margin: 4px 0;
}
.hero {
    position: relative;
    background: url('Tesdabg.jpg') no-repeat center center/cover;
    color: white;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.64);
}
.hero-content {
    position: relative;
    z-index: 1;
}
h1 {
    text-shadow: 5px 5px 5px rgb(0, 0, 0);
    font-size: 3rem;
    font-weight: 700;
    margin: 0;
}
p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 10px auto;
}
.buttons {
    margin-top: 20px;
}
.btn {
    text-decoration: none;
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    font-size: 1rem;
    margin: 10px;
    display: inline-block;
    transition: 0.3s;
}
.btn-primary {
    background: #ff0066;
}
.btn-secondary {
    border: 2px solid white;
}
.btn:hover {
    opacity: 0.8;
}
.footer {
    background: #111;
    color: white;
    padding: 20px;
    text-align: center;

}
@media (max-width: 768px) {
    h1{
        font-size: 2rem;
    }
    .menu {
        display: none;
        flex-direction: column;
        width: 100%;
        background: rgba(0, 0, 0, 0.9);
        position: absolute;
        top: 60px;
        left: 0;
        text-align: center;
        padding: 10px 0;
    }
    .menu a {
        display: block;
        margin: 10px 0;
    }
    .menu-toggle {
        display: flex;
    }
    .menu.active {
        display: flex;
    }
}
.navbar a:hover {
color: #ff0066; /* Change text color on hover */
transition: 0.3s ease-in-out;
}

.menu a:hover {
text-decoration: underline; /* Underline effect on hover */
}
