
html, body {
    height: 100%;
    margin: 0;
}

.main-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-image: url('../../images/trackonImages/IndexPage.jpg'); /* update path */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.header-logo {
    max-width: 140px;
    height: auto;
}

.bg-content {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.left-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding: 1rem;
}

    .left-text h1 {
        font-size: 2.8rem;
        font-weight: bold;
    }

    .left-text h6 {
        font-size: 1.2rem;
        color: #222;
    }

.login-card {
    background-color: rgba(194, 189, 189, 0.95);
    border-radius: 1rem;
    padding: 2rem;
    width: 100%;
    max-width: 380px;
    margin: auto;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

.form-control {
    border-radius: 30px;
    padding: 0.6rem 1rem;
}

    .form-control:focus {
        box-shadow: none;
        border: 2px solid orange;
    }

.btn-signin {
    background-color: #8b2e2e;
    color: #fff;
    border-radius: 5px;
    font-weight: bold;
    width: 100%;
    padding: 0.5rem;
    font-size: 1rem;
}

.footer {
    background-color: #fff;
    padding: 10px 0;
}

    .footer a {
        color: #f77c00;
        font-weight: bold;
    }

@media (max-width: 768px) {
    .left-text {
        text-align: center;
        margin-bottom: 2rem;
    }

        .left-text h1 {
            font-size: 2rem;
        }

        .left-text h6 {
            font-size: 1rem;
        }
}

