html,body{margin:0;padding:0;width:100%;height:100%}.fm-login-container{width:100vw;height:100vh;display:flex;justify-content:center;align-items:center;background:var(--fm-gradient-orange)}.fm-login-card{width:420px;background:#fff;padding:3rem 2.8rem;border-radius:1.5rem;text-align:center;box-shadow:var(--fm-shadow);box-sizing:border-box;animation:fmFadeIn .5s ease-out}.fm-login-logo{width:100px;margin-bottom:.8rem}.fm-login-card h1{color:var(--fm-black);font-size:1.5rem;font-weight:700;margin:.4rem 0 .3rem}.fm-login-subtitle{margin-bottom:2rem;font-size:.9rem;color:#7b7b7b}.fm-login-form{width:100%;max-width:100%;display:flex;flex-direction:column;align-items:stretch;gap:1rem}.fm-login-form label{font-size:.9rem;font-weight:600;color:var(--fm-black)}.fm-login-form input{width:100%!important;max-width:100%;box-sizing:border-box;padding:.75rem 1rem;margin-top:.2rem;border-radius:var(--fm-radius-sm);border:1px solid var(--fm-grey-light);background:#fafafa;font-size:1rem;outline:none;transition:border-color .2s ease}.fm-login-form input:focus{border-color:var(--fm-red)}input,textarea{max-width:100%}.fm-login-btn{margin-top:1.3rem;padding:.9rem;background:var(--fm-red);color:#fff;border:none;border-radius:2rem;font-weight:600;font-size:1rem;cursor:pointer;width:100%;transition:background .2s ease}.fm-login-btn:hover{background:#cf4a25}.fm-login-error,fm-alert-error{background:#ffe3e3;color:#c02c2c;padding:.8rem 1rem;border-radius:var(--fm-radius-sm);margin-bottom:1.2rem;text-align:center}@keyframes fmFadeIn{0%{opacity:0;transform:translateY(10px) scale(.98)}to{opacity:1;transform:translateY(0) scale(1)}}:root{--fm-brown: #D19A66;--fm-green: #56B870;--fm-red: #E4572E;--fm-yellow: #F6AE2D;--fm-black: #2F3136;--fm-beige: #F9F3E8;--fm-grey-light: #EDEDED;--fm-gradient-orange: linear-gradient(135deg, #E4572E, #F6AE2D);--fm-card-bg: #ffffff;--fm-radius: 1.2rem;--fm-radius-sm: .6rem;--fm-shadow: 0 12px 25px rgba(0,0,0,.08);--fm-h1: 2rem;--fm-h2: 1.4rem;--fm-h3: 1.15rem;--fm-text: 1rem;--fm-small: .85rem}body{font-family:Roboto,sans-serif;color:var(--fm-black);background:var(--fm-beige);margin:0;padding:0}h1,h2,h3,h4,h5,h6{font-family:Poppins,sans-serif;margin:0;font-weight:700}h1{font-size:var(--fm-h1)}h2{font-size:var(--fm-h2)}h3{font-size:var(--fm-h3)}.fm-btn-primary{background:var(--fm-red);color:#fff;border:none;padding:.75rem 1.6rem;font-weight:600;font-size:1rem;border-radius:2rem;cursor:pointer;transition:.2s ease}.fm-btn-primary:hover{background:#cf4a25}.fm-btn-secondary{background:#fff;color:var(--fm-black);border-radius:2rem;border:1px solid var(--fm-grey-light);padding:.7rem 1.4rem;cursor:pointer;font-weight:500}.fm-btn-ghost{background:transparent;border:none;color:var(--fm-red);cursor:pointer}.fm-btn-warning{background:var(--fm-yellow);color:var(--fm-black);padding:.7rem 1.4rem;border-radius:2rem;border:none}.fm-input:focus,.fm-textarea:focus,input:focus,textarea:focus{border-color:var(--fm-red)}.fm-card{background:var(--fm-card-bg);border-radius:var(--fm-radius);padding:1.8rem;box-shadow:var(--fm-shadow);border:1px solid var(--fm-grey-light);margin-bottom:1.5rem}.fm-card h2{font-size:var(--fm-h2);margin-bottom:1.2rem}.tag{display:inline-block;padding:.25rem .7rem;border-radius:50rem;font-size:var(--fm-small);font-weight:600}.tag-success{background:#56b87033;color:var(--fm-green)}.tag-warning{background:#f6ae2d33;color:var(--fm-yellow)}.tag-danger{background:#e4572e33;color:var(--fm-red)}.tag-muted{background:var(--fm-grey-light);color:#555}.fa,.fas,.far,.fal,.fab{color:var(--fm-black);transition:.2s ease}.fm-icon-inactive{color:#9ca3af}.fm-icon-primary{color:var(--fm-red)}.fm-icon-green{color:var(--fm-green)}.fm-icon-yellow{color:var(--fm-yellow)}.fm-shadow{box-shadow:var(--fm-shadow)}.fm-rounded{border-radius:var(--fm-radius)}.fm-flex{display:flex;align-items:center;gap:1rem}.fm-grid-2{display:grid;grid-template-columns:1.2fr .8fr;gap:2rem}.fm-grid-auto{display:grid;gap:1rem;grid-template-columns:repeat(auto-fit,minmax(200px,1fr))}.fm-section-title{display:flex;justify-content:space-between;align-items:center}.fm-gradient-bg{background:var(--fm-gradient-orange)}.fm-alert-error{background:#ffe3e3;color:var(--fm-red);padding:.8rem 1rem;border-radius:var(--fm-radius-sm);margin-bottom:1.2rem;text-align:center}.fm-pro-layout{display:flex;min-height:100vh;background:var(--fm-beige)}.fm-sidebar{width:10%;background:#fff;border-right:1px solid var(--fm-grey-light);padding:1.5rem 1.3rem;display:flex;flex-direction:column}.fm-sidebar-logo{display:flex;align-items:center;gap:.6rem;font-weight:700;margin-bottom:2rem}.fm-sidebar-logo img{width:28px;height:28px}.fm-sidebar-nav{display:flex;flex-direction:column;gap:.3rem}.fm-sidebar-nav a{display:flex;align-items:center;gap:.7rem;padding:.55rem .7rem;border-radius:.8rem;color:#6b7280;text-decoration:none;font-size:.95rem}.fm-sidebar-nav a i{width:18px}.fm-sidebar-nav a:hover{background:var(--fm-beige);color:var(--fm-black)}.fm-sidebar-nav a.active{background:var(--fm-brown);color:#fff}.fm-main{flex:1;display:flex;flex-direction:column}.fm-topbar{height:64px;background:#fff;border-bottom:1px solid var(--fm-grey-light);padding:0 2rem;display:flex;align-items:center;justify-content:space-between}.fm-topbar-right{display:flex;align-items:center;gap:1rem}.fm-user-pill{display:flex;align-items:center;gap:.6rem;background:#f3f4f6;padding:.3rem .8rem;border-radius:999px}.fm-user-pill .avatar{width:26px;height:26px;border-radius:50%;background:var(--fm-brown);color:#fff;display:flex;align-items:center;justify-content:center;font-size:.85rem}.fm-user-pill .info{display:flex;flex-direction:column}.fm-user-pill small{font-size:.75rem;color:#6b7280}.fm-main-content{padding:1.8rem 2.5rem}.fm-ft-profile{display:flex;flex-direction:column;gap:2rem}.fm-ft-cover{width:100%;height:260px;border-radius:var(--fm-radius);overflow:hidden;position:relative;box-shadow:var(--fm-shadow)}.fm-ft-cover img{width:100%;height:100%;object-fit:cover}.fm-btn-edit-cover{position:absolute;bottom:1rem;right:1rem}.fm-ft-header{display:flex;align-items:flex-start;gap:1.8rem;padding:1.5rem;background:#fff;border-radius:var(--fm-radius);box-shadow:var(--fm-shadow)}.fm-ft-avatar{width:110px;height:110px;border-radius:1rem;overflow:hidden;border:3px solid #fff;box-shadow:var(--fm-shadow)}.fm-ft-avatar img{width:100%;height:100%;object-fit:cover}.fm-ft-info h1{margin:0;font-size:1.6rem;font-weight:700}.fm-ft-status{margin-top:.3rem;display:inline-block;padding:.3rem .7rem;font-size:.8rem;border-radius:50rem}.fm-ft-status.active{background:#56b87033;color:var(--fm-green)}.fm-ft-status.inactive{background:var(--fm-grey-light);color:#777}.fm-ft-actions{margin-left:auto;display:flex;gap:.7rem;align-items:center}.fm-ft-grid{display:grid;grid-template-columns:1.4fr .8fr;gap:2rem}.fm-field-grid{display:grid;gap:1rem;grid-template-columns:repeat(2,1fr)}.fm-field{display:flex;flex-direction:column;gap:.4rem}.fm-field input,.fm-field textarea{border-radius:var(--fm-radius-sm);border:1px solid var(--fm-grey-light);padding:.7rem 1rem;background:#f9f9f9}.fm-card-side .fm-stat{display:flex;justify-content:space-between;padding:.4rem 0;font-size:.95rem}.fm-vehicle{display:flex;align-items:flex-start;gap:1rem;padding:1rem 0;border-bottom:1px solid var(--fm-grey-light)}.fm-vehicle .icon{font-size:1.4rem}.fm-vehicle-info{display:flex;flex-direction:column;gap:.2rem}.fm-menus-grid{display:grid;gap:1.2rem;grid-template-columns:repeat(auto-fit,minmax(240px,1fr))}.fm-menu{background:#fff;border-radius:var(--fm-radius-sm);padding:1rem;box-shadow:var(--fm-shadow);display:flex;flex-direction:column;gap:.5rem}.fm-menu-header{display:flex;justify-content:space-between;align-items:center}.fm-menu-actions{display:flex;justify-content:flex-end;gap:.4rem}.fm-link-btn{background:none;border:none;color:var(--fm-red);cursor:pointer;font-size:.9rem;padding:0}.fm-ft-info-wrapper{display:flex;justify-content:space-between;align-items:center;width:100%}.fm-ft-info{display:flex;flex-direction:column}.fm-ft-info h1{margin:0 0 8px}.fm-ft-description{white-space:pre-line;line-height:1.4;color:#6b7280}.fm-ft-status{padding:8px 16px;border-radius:30px;font-weight:600;font-size:14px;white-space:nowrap}.fm-ft-status.active{background:#d1fadf;color:#0f5132}.fm-ft-status.inactive{background:#ffe0e0;color:#842029}:root{--fm-red: #E4572E;--fm-yellow: #F6AE2D;--fm-green: #56B870;--fm-brown: #D19A66;--fm-black: #2F3136;--fm-grey: #9ca3af;--fm-grey-light: #e5e7eb;--fm-beige: #f9f3e8;--fm-radius: 12px;--fm-shadow: 0 8px 25px rgba(0,0,0,.05)}button{border:none}.fm-btn{cursor:pointer;border:none;border-radius:var(--fm-radius);padding:.75rem 1.6rem;font-weight:600;transition:.2s ease}.fm-input{padding:10px 14px;border-radius:var(--fm-radius);border:1px solid var(--fm-grey-light);background:#fafafa}.fm-label{font-weight:600;margin-bottom:4px;display:block}.fm-card{background:#fff;padding:2rem;border-radius:var(--fm-radius);box-shadow:var(--fm-shadow);margin-bottom:1.5rem}.fm-badge-active{color:var(--fm-green);font-weight:600}.fm-badge-inactive{color:var(--fm-red);font-weight:600}.fm-flex{display:flex}.fm-grid{display:grid;gap:1.5rem}.loader{width:18px;height:18px;border:3px solid transparent;border-top-color:currentColor;border-radius:50%;animation:spin .7s linear infinite}@keyframes spin{to{transform:rotate(360deg)}}.fm-page-wrapper-center{display:flex;justify-content:center;padding-top:60px;padding-bottom:60px}.fm-form-container{width:100%;max-width:650px;background:#fff;padding:40px;border-radius:16px;box-shadow:0 8px 30px #0000000f}.fm-title{margin-bottom:8px}.fm-subtitle{font-size:15px;color:#777;margin-bottom:25px}.fm-form .fm-form-group{margin-bottom:20px}.fm-step-title{margin-bottom:1rem}
