 body {
     font-family: 'Inter', sans-serif;
     min-height: 100vh;
     display: flex;
     align-items: center;
     justify-content: center;
     position: relative;
     overflow: hidden;
     background: linear-gradient(135deg, #1f6f64, #1a5f55);
}
 body::before {
     content: "";
     position: absolute;
     inset: 0;
     background: url("../../image/bg_login_cons.jpg") center/cover repeat;
     opacity: 0.02;
     z-index: 0;
}
/* Motif diagonal */
 body::after {
     content: "";
     position: absolute;
     inset: 0;
     background-image: repeating-linear-gradient( -45deg, rgba(255,255,255,0.05) 0px, rgba(255,255,255,0.05) 1px, transparent 1px, transparent 6px );
     z-index: 0;
}
 .login-wrapper {
     position: relative;
     z-index: 2;
     width: 100%;
     max-width: 380px;
     text-align: center;
}
 .login-card {
     background: #ffffff;
     border-radius: 16px;
     padding: 32px;
     box-shadow: 0 15px 40px rgba(0,0,0,.18);
}
 .form-control {
     border-radius: 999px;
     padding: 10px 18px;
     background: #f6f6f6;
     border: 1px solid #e1e1e1;
}
 .btn-login {
     border-radius: 999px;
     padding: 10px;
     background: linear-gradient(135deg, #26a69a, #1e7f6f);
     border: none;
     font-weight: 500;
     background: linear-gradient(180deg, #1D9487 0%, #20766C 100%);
     border: 1px solid #0F5E55;
     box-shadow: 0px 0px 0px 2px #4EC2B5 inset;
     box-shadow: 0px -2px 2px 0px #0F5E55 inset;
     box-shadow: 0px 4px 4px 0px #00000026;
}
 .btn-login:hover {
     filter: brightness(0.95);
}
 .brand {
     color: #fff;
     font-weight: 600;
     margin-bottom: 16px;
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 8px;
}
 .terms {
     font-size: 12px;
     color: rgba(255,255,255,.8);
     margin-top: 18px;
}
 .terms a {
     color: #aef1e5;
     text-decoration: none;
}
 