﻿html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    background-color: #222222; /* your dark base color */
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* Background wrapper */
.bg-wrap {
    position: relative;
    min-height: 100vh;
    background:
    /*radial-gradient(circle at center, rgba(0, 0, 0, 0.6) 0, rgba(0, 0, 0, 0.9) 60%),*/
    url("../Images/login.png") no-repeat center center fixed;
    background-size: cover;
}

/* Optional: adjust focus so more of the RV shows on wide screens */
@media (min-width: 992px) {
    .bg-wrap {
        background-position: 70% center; /* nudges focus toward the RV on the right */
    }
}

/* On phones, center the interesting part a bit more */
@media (max-width: 576px) {
    .bg-wrap {
        background-attachment: scroll; /* better performance on mobile */
        background-position: center 40%;
    }
}

/* Center the login box */
.login-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

/* Login panel styling */
.login-box {
    background-color: rgba(12, 12, 12, 0.85);
    border-radius: 12px;
    padding: 2rem 2.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7);
    max-width: 360px;
    width: 100%;
    color: #f5f5f5;
}

.lightup-tile {
    display: inline-block;
    padding: 20px 40px;
    margin: 15px;
    border-radius: 12px;
    background: #333333;
    color: #f0f0f0;
    text-decoration: none;
    font-size: 18px;
    transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
    width: 200px;
    text-align: center;
    font-family: Arial;
}

    .lightup-tile:hover {
        background: #444444;
        box-shadow: 0 0 15px rgba(255, 255, 255, 0.15);
        transform: translateY(-3px);
    }
