:root {
    --primary-color: #faa61f;
    --primary-dark: #e8951c;
    --primary-light: #fbb44a;
    --secondary-color: #f093fb;
    --accent-color: #4facfe;
    --success-color: #00d4aa;
    --warning-color: #ffd700;
    --danger-color: #ff6b6b;
    --text-dark: #2c3e50;
    --text-light: #ffffff;
    --text-muted: #6c757d;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.15);
    --shadow-xl: 0 20px 40px rgba(0,0,0,0.2);
    --border-radius: 16px;
    --border-radius-lg: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    box-sizing: border-box;
}

@font-face {
    font-family: 'Abel';
    src: url('../font/Abel.ttf');
}

@font-face {
    font-family: 'Cairo';
    src: url('../font/Cairo.ttf');
}

body {
    
    background-attachment: fixed;
    min-height: 100vh;
    font-family: 'Abel', 'cairo';
    color: var(--text-dark);
    margin: 0;
    padding: 0;
    position: relative;
    background-color: #f5f5f5;

}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(250, 166, 31, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(251, 180, 74, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(250, 166, 31, 0.2) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

.forms {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.form-container {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 50rem;
}

.form-control {
    padding: 0.6rem 0.85rem;
    font-size: 0.95rem;
    height: auto;
}

.form-label {
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
    font-weight: 500;
}

.btn {
    padding: 0.6rem 0.85rem;
    font-size: 0.95rem;
}

.logo-container {
    text-align: center;
}

/*Table de mes fichier*/
.container-fichier {
    padding: 20px;
}

/*Style forme*/
.container-login {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.form-container-login {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 23rem;
}

.form-control {
    padding: 0.6rem 0.85rem;
    font-size: 0.95rem;
    height: auto;
}

.form-label {
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
}

.btn {
    padding: 0.6rem 0.85rem;
    font-size: 0.95rem;
}