@charset "UTF-8";

/*!
 * Version - 1.1.1
 * Copyright (c) 2026
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css');
@import url('../vendor/bootstrap/css/bootstrap.min.css');
@import url('color.css');
@import url('typography.css');

:root {
    --ink: #123028;
    --amber: #e6ab48;
    --rust: #e4590f;
    --bg: #f7f3ea;
    --line: #e4ddcf;
}

body {
    font-family: "Inter", system-ui, sans-serif;
    background: var(--bg);
}

.sx-wrap {
    min-height: 100vh;
}

/* Panneau marque */
.sx-brand {
    background: var(--ink);
    color: #fff;
    position: relative;
    overflow: hidden;
    padding: 56px 52px;
}

.sx-brand::after {
    content: "";
    position: absolute;
    right: -120px;
    bottom: -120px;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(230, 171, 72, .22), transparent 70%);
}

.sx-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 100px;
    padding: 7px 16px;
    font-size: 12.5px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--amber);
    font-weight: 600;
}

.sx-brand h1 {
    font-weight: 800;
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.08;
    margin: 26px 0 16px;
}

.sx-brand h1 span {
    color: var(--amber);
}

.sx-brand p {
    color: rgba(255, 255, 255, .72);
    font-size: 16px;
    line-height: 1.6;
    max-width: 420px;
}

.sx-meta {
    position: absolute;
    left: 52px;
    bottom: 44px;
    color: rgba(255, 255, 255, .55);
    font-size: 13px;
}

.sx-meta strong {
    color: #fff;
    font-weight: 600;
}

/* Panneau formulaire */
.sx-form-col {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 24px;
}

.sx-card {
    width: 100%;
    max-width: 420px;
}

.sx-kicker {
    color: var(--rust);
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-size: 12.5px;
    margin-bottom: 10px;
}

.sx-card h2 {
    color: var(--ink);
    font-weight: 800;
    font-size: 28px;
    margin-bottom: 6px;
}

.sx-card .sx-sub {
    color: #6f7b74;
    font-size: 15px;
    margin-bottom: 30px;
}

.sx-card label {
    color: var(--ink);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .03em;
    margin-bottom: 7px;
}

.sx-card .form-control {
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 13px 16px;
    font-size: 15px;
    background: #fffdf8;
}

.sx-card .form-control:focus {
    border-color: var(--amber);
    box-shadow: 0 0 0 4px rgba(230, 171, 72, .18);
}

.sx-btn {
    background: var(--ink);
    color: #fff;
    border: 0;
    border-radius: 12px;
    padding: 14px;
    font-weight: 700;
    font-size: 15px;
    width: 100%;
    transition: background .18s, transform .05s;
}

.sx-btn:hover {
    background: #0c211b;
    color: #fff;
}

.sx-btn:active {
    transform: translateY(1px);
}

.sx-foot {
    text-align: center;
    color: #94a09a;
    font-size: 12.5px;
    margin-top: 26px;
}

.invalid-feedback {
    font-size: 12.5px;
}