body {
    display: flex;
    font-family: 'Montserrat', Arial, sans-serif;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #000; 
}

/*================= TOP NAVIGATION =========================*/
/* Top navigation bar */
.top-navbar {
    width: 100vw;
    background: #2c3136;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 32px;
    position: fixed; /* instead of absolute */
    top: 0;
    left: 0;
    z-index: 1100;
    min-height: 48px;
}

/* Logo link */
.top-navbar .logo-link {
    text-decoration: none;
    display: flex;
    align-items: center;
}

/* Logo image */
.top-navbar .logo-link img {
    height: 28px;
    margin-right: 12px;
}

/* Contact Us button */
.top-navbar .link-block-navbar {
    background: rgba(168, 173, 179, 0.3);
    color: #fff;
    padding: 8px 18px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: background 0.2s;
}


/*================= LOGIN INSET =========================*/

.card, .card-header, h2, h3, label, input, button, .BrandLinks, .register-link {
        font-family: 'Montserrat', Arial, sans-serif;
}

.card {
    width: 100%;
    max-width: 400px;
    padding: 20px;
    background: #23272a; /* Lighter gray */
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.7);
    color: #fff;
}
.card-header {
    text-align: center;
    background: transparent;
    border-bottom: none;
}
.btn-primary {
    background-color: #00bcd4 !important;
    border-color: #00bcd4 !important;
    color: #fff !important;
}
.register-link {
    color: #ed1c24 !important;
}

.signin-link {
    color: #00bcd4 !important;
}

/*================= MEDIA LINKS =========================*/

.BrandLinks {
    position: fixed;
    bottom: 18px;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 1000;
}
.BrandLinks a {
    color: white;
    margin: 0 12px;
}
.BrandLinks i {
    font-size: 18pt;
    transition: color 0.2s;
}
.BrandLinks a:hover i {
    color: #00bcd4;
}

.background-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 48px); /* below navbar */
    margin-top: 48px;
    width: 100vw;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden; /* Prevent scrollbars */
}


.toggle-password {
    position: absolute;
    top: 50%;
    cursor: pointer;
    right: 16px;
    transform: translateY(20%);
    z-index: 2;
}


.toggle-password i {
    color: #000 !important;
}

input[type="password"] {
    padding-right: 40px; /* Add space for the eye icon */
}