/* Professional Login Screen */
.login-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.login-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("/images/track-bg.jpg") center/cover;
    filter: blur(0px);
    z-index: -1;
}

/* Animated background effect */
.login-section::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255, 102, 0, 0.03) 10px,
        rgba(255, 102, 0, 0.03) 20px
    );
    animation: slide 20s linear infinite;
    z-index: -1;
}

@keyframes slide {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.login-container {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 102, 0, 0.3);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    max-width: 400px;
    width: 90%;
    transform: translateY(0);
    transition: all 0.3s ease;
}

.login-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(255, 102, 0, 0.3);
}

.login-container h2 {
    color: #ff6600;
    text-align: center;
    font-size: 32px;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(255, 102, 0, 0.5);
}

.login-container .tagline {
    text-align: center;
    color: #999;
    margin-bottom: 30px;
    font-style: italic;
}

.login-container input {
    width: 100%;
    padding: 15px;
    margin: 10px 0;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 102, 0, 0.3);
    border-radius: 10px;
    color: white;
    font-size: 16px;
    transition: all 0.3s;
}

.login-container input:focus {
    outline: none;
    border-color: #ff6600;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 20px rgba(255, 102, 0, 0.3);
}

.login-container button {
    width: 100%;
    padding: 15px;
    margin-top: 20px;
    background: linear-gradient(45deg, #ff6600, #ff8833);
    border: none;
    border-radius: 10px;
    color: white;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.login-container button:hover {
    background: linear-gradient(45deg, #ff8833, #ff6600);
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(255, 102, 0, 0.5);
}

/* Logo/Branding */
.site-logo {
    text-align: center;
    margin-bottom: 20px;
}

.site-logo h1 {
    font-size: 48px;
    background: linear-gradient(45deg, #ff6600, #ffaa00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
    font-weight: 900;
}

.site-logo .subtitle {
    color: #666;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 3px;
}
