﻿body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: url('~/images/background.jpeg') no-repeat center center fixed;
    background-size: cover;
    color: #333;
}

/* Top Bar */
.top-bar {
    display: flex;
    justify-content: space-between; /* logo left, button right */
    align-items: center;
    
    padding: 10px 20px;
    color: #fff;
}

.logo-title {
    display: flex;
    align-items: center;
}

.logo {
    height: 60px;
    margin-right: 15px;
}

.title-text h2 {
    margin: 0;
    font-size: 18px;
}

.title-text h3 {
    margin: 0;
    font-size: 14px;
}

.track-btn {
    background-color: #2471ac;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-transform: uppercase;
    text-decoration: none; /* removes underline */
    color: inherit; /* inherits text color from parent */
    transition: background-color 0.3s ease;
    margin-left: auto; /* ensures button sticks to right */
}


/* Page Title */
.page-title {
    text-align: center;
    margin: 30px 0;
    color: #000;
}

/* Login Section */
.main-section {
    display: flex;
    justify-content: flex-end; /* pushes login box to right */
    padding: 50px;
    
}

.login-box {
    background: #2471ac;
    color: #fff;
    padding: 20px;
    width: 300px;
    border-radius: 8px;
}}

.login-box h2 {
    margin-top: 0;
    text-align: center;
}

    .login-box label {
        display: block;
        margin-top: 10px;
    }

    .login-box input {
        width: 100%;
        padding: 8px;
        margin-top: 5px;
        border: none;
        border-radius: 4px;
    }

.forgot {
    display: block;
    margin: 10px 0;
    color: #ffeb3b;
    text-decoration: none;
}

.signin-btn {
    width: 100%;
    padding: 10px;
    background: #ffc107;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
}

/* Footer */

.footer {
    position: fixed; /* locks footer in place */
    bottom: 0; /* sticks to bottom edge */
    left: 0;
    width: 100%; /* full width */
    background: #000; /* black background */
    color: #fff; /* white text */
    display: flex;
    justify-content: space-around;
    padding: 20px;
    flex-wrap: wrap;
    z-index: 1000; /* ensures it stays above other elements */
}


.footer-section {
    width: 45%;
}

    .footer-section h3 {
        margin-bottom: 10px;
    }

.footer-bottom {
    text-align: center;
    width: 100%;
    margin-top: 20px;
    font-size: 14px;
}
