/**
 * Styles pour le layout d'authentification de Restaurant Tycoon
 * Ce fichier ne contient que les styles globaux et le background
 */

:root {
    /* Palette de couleurs principale */
    --primary-dark: #0D1B2A;
    --primary-medium: #1B263B;
    --primary-light: #415A77;
    --accent-primary: #5D43FB;
    --accent-secondary: #7B61FF;
    --accent-tertiary: #9F8FFF;
    --accent-glow: rgba(93, 67, 251, 0.6);
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--primary-dark);
    color: #FFFFFF;
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Particles Background */
.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* Background Elements */
.auth-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../../../images/restaurant-bg.jpg');
    background-size: cover;
    background-position: center;
    filter: blur(3px);
    z-index: -2;
    overflow: hidden;
}

/* Moving Lights Animation */
.moving-light {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float 20s infinite alternate;
}

.light-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--accent-primary) 0%, transparent 70%);
    top: 10%;
    left: 20%;
    animation-delay: 0s;
}

.light-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--accent-secondary) 0%, transparent 70%);
    bottom: 5%;
    right: 10%;
    animation-delay: -5s;
}

.light-3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, #FF5E5B 0%, transparent 70%);
    top: 60%;
    left: 10%;
    animation-delay: -10s;
}

.auth-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 27, 42, 0.8), rgba(27, 38, 59, 0.9));
    z-index: -1;
}

/* Conteneur principal */
.auth-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    width: 100%;
    padding: 0;
    position: relative;
    z-index: 5;
    box-sizing: border-box;
}

.auth-content-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    padding: 0;
}

/* Animation */
@keyframes float {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
    100% { transform: translateY(0) rotate(0deg); }
}
