
 
input {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 8px;
}

button {
    width: 100%;
    padding: 12px;
    background: #0078ff;
    border: 0;
    color: white;
    border-radius: 8px;
    cursor: pointer;
}

    button:hover {
        background: #005fd4;
    }

@media (max-width: 500px) {
    .auth-container {
        margin: 20px;
        padding: 20px;
    }
}
/* GLOBAL */
body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #f2f2f2;
}

.app-header {
    position: fixed; 
    top: 0;
    width: 100%;
    height: 60px;
  
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 3000;
    color: #fff; /* texte clair sur image */
}


.logo {
    font-size: 20px;
    font-weight: bold;
}

.menu {
    display: flex;
    gap: 15px;
}

    .menu a {
        text-decoration: none;
        color: #444;
        font-weight: 500;
    }

.burger {
    display: none;
    font-size: 26px;
    cursor: pointer;
}

/* SIDE MENU MOBILE */
.side-menu {
    position: fixed;
    left: -250px;
    top: 0;
    width: 250px;
    height: 100vh;
    background: white;
    box-shadow: 5px 0 15px rgba(0,0,0,0.2);
    padding-top: 60px;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
}

    .side-menu a {
        padding: 15px;
        text-decoration: none;
        color: #333;
        border-bottom: 1px solid #eee;
    }

    .side-menu.open {
        left: 0;
    }

/* MAIN */
.app-content {
    margin-top: 70px;
    padding: 20px;
}

/* FOOTER (barre style app mobile / YouTube) */
.app-footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 60px;
    background: #fff;
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-top: 1px solid #ddd;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

    .app-footer a {
        font-size: 26px;
        text-decoration: none;
        color: #444;
    }

/* RESPONSIVE */
@media(max-width: 768px) {
    .menu {
        display: none;
    }

    .burger {
        display: block;
    }
}