42 lines
2.5 KiB
CSS
42 lines
2.5 KiB
CSS
/* ============================================================
|
|
INTER SANTÉ — LOGIN UI (ONLY)
|
|
============================================================ */
|
|
|
|
/* --- CONFIGURATION GLOBALE --- */
|
|
html, body { height: 100%; margin: 0; overflow: hidden; font-family: 'Inter', sans-serif; background: #f4f7f6; }
|
|
|
|
.auth-wrapper { display: flex; height: 100vh; width: 100vw; }
|
|
|
|
/* --- SLIDESHOW (GAUCHE) --- */
|
|
.auth-visual { flex: 1.4; position: relative; background: #212529; overflow: hidden; }
|
|
.slide-container { width: 100%; height: 100%; position: relative; }
|
|
.slides img { width: 100%; height: 100%; object-fit: cover; position: absolute; opacity: 0; transition: opacity 0.8s ease-in-out; }
|
|
.slides img.active { opacity: 1; position: relative; }
|
|
|
|
.buttons span { position: absolute; top: 50%; transform: translateY(-50%); color: white; cursor: pointer; z-index: 10; padding: 20px; font-size: 24px; opacity: 0.5; transition: 0.3s; }
|
|
.buttons span:hover { opacity: 1; }
|
|
.next { right: 10px; } .prev { left: 10px; }
|
|
|
|
.dotsContainer { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); display: flex; gap: 12px; z-index: 10; }
|
|
.dot { width: 10px; height: 10px; border: 2px solid white; border-radius: 50%; cursor: pointer; }
|
|
.dot.active { background: white; }
|
|
|
|
/* --- FORMULAIRE (DROITE) --- */
|
|
.auth-content { flex: 1; background: white; display: flex; align-items: center; justify-content: center; padding: 40px; }
|
|
.auth-card { width: 100%; max-width: 400px; }
|
|
.auth-logo { max-height: 70px; margin-bottom: 20px; }
|
|
.auth-title { font-size: 1.25rem; font-weight: 700; color: #333; margin-bottom: 30px; text-transform: uppercase; letter-spacing: 1px; }
|
|
|
|
/* --- COMPOSANTS ERP --- */
|
|
.lbl-erp { font-size: 11px; font-weight: 700; color: #6c757d; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 5px; display: block; }
|
|
.group-erp { border: 1px solid #dee2e6; border-radius: 6px; overflow: hidden; transition: 0.2s; }
|
|
.group-erp:focus-within { border-color: #212529; box-shadow: 0 0 0 3px rgba(33, 37, 41, 0.05); }
|
|
.group-erp .input-group-text { background: transparent; border: none; color: #adb5bd; padding-left: 15px; }
|
|
.group-erp .form-control { border: none; padding: 12px; font-size: 14px; font-weight: 500; }
|
|
.group-erp .form-control:focus { box-shadow: none; background: #fcfcfc; }
|
|
|
|
.forgot-link { font-size: 11px; font-weight: 600; color: #6c757d; text-decoration: none; }
|
|
.forgot-link:hover { color: #212529; }
|
|
|
|
.auth-footer { margin-top: 50px; font-size: 12px; color: #adb5bd; }
|
|
.auth-footer strong { color: #6c757d; } |