/* ==========================================
   MUANA BITINDA LIVRAISON
   ESPACE ENTREPRISE
========================================== */

*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{

font-family:'Poppins',sans-serif;

background:linear-gradient(135deg,#0b3c88,#1565c0,#1e88e5);

min-height:100vh;

display:flex;

justify-content:center;

align-items:center;

padding:40px;

overflow-x:hidden;

}
.entreprise-page{

width:100%;

display:flex;

justify-content:center;

align-items:center;

}
.entreprise-card{

width:100%;

max-width:1150px;

background:#ffffff;

border-radius:25px;

overflow:hidden;

box-shadow:

0 20px 60px rgba(0,0,0,.18);

animation:fadeUp .7s ease;

}
@keyframes fadeUp{

from{

opacity:0;

transform:translateY(40px);

}

to{

opacity:1;

transform:translateY(0);

}

}
.logo-zone{

background:linear-gradient(135deg,#004aad,#0066d6);

color:#fff;

text-align:center;

padding:45px;

}

.entreprise-logo{

width:110px;

height:110px;

border-radius:50%;

background:#fff;

padding:12px;

margin-bottom:20px;

box-shadow:0 8px 25px rgba(0,0,0,.25);

}

.logo-zone h1{

font-size:38px;

font-weight:700;

margin-bottom:10px;

}

.logo-zone p{

font-size:17px;

opacity:.95;

}
/* ==========================================
   FORMULAIRE
========================================== */

.entreprise-form{

padding:45px;

background:#fff;

}

.form-section{

margin-bottom:40px;

}

.form-section h2{

display:flex;

align-items:center;

gap:12px;

font-size:24px;

color:#004aad;

margin-bottom:25px;

padding-bottom:12px;

border-bottom:2px solid #e8eef8;

}

.form-section h2 i{

color:#0066d6;

font-size:22px;

}
.form-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

gap:22px;

}
.input-group{

display:flex;

flex-direction:column;

margin-bottom:20px;

}

.input-group label{

font-size:15px;

font-weight:600;

margin-bottom:8px;

color:#333;

}
.input-group input,
.input-group select,
.input-group textarea{

width:100%;

padding:15px 18px;

border:2px solid #dbe4f3;

border-radius:14px;

font-size:15px;

font-family:Poppins,sans-serif;

background:#fafcff;

transition:.3s;

outline:none;

}
.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus{

border-color:#0066d6;

background:#fff;

box-shadow:0 0 0 4px rgba(0,102,214,.15);

}
textarea{

resize:vertical;

min-height:130px;

}
input[type=file]{

padding:14px;

background:#f3f8ff;

border:2px dashed #0066d6;

cursor:pointer;

}

input[type=file]:hover{

background:#eaf3ff;

}
/* ==========================================
   MOT DE PASSE
========================================== */

.password-box{

position:relative;

display:flex;

align-items:center;

}

.password-box input{

padding-right:55px;

}

.toggle-password{

position:absolute;

right:15px;

background:none;

border:none;

cursor:pointer;

font-size:18px;

color:#666;

transition:.3s;

}

.toggle-password:hover{

color:#0066d6;

transform:scale(1.1);

}
/* ==========================================
   CONDITIONS
========================================== */

.checkbox-group{

margin:30px 0;

padding:20px;

background:#f8fbff;

border:1px solid #dbe4f3;

border-radius:15px;

}

.checkbox-group label{

display:flex;

align-items:flex-start;

gap:12px;

cursor:pointer;

font-size:15px;

line-height:1.6;

color:#444;

}

.checkbox-group input{

margin-top:4px;

transform:scale(1.2);

accent-color:#0066d6;

}
/* ==========================================
   BOUTON
========================================== */

.btn-zone{

margin-top:35px;

}

.inscription-btn{

width:100%;

padding:18px;

border:none;

border-radius:15px;

background:linear-gradient(135deg,#004aad,#0066d6);

color:#fff;

font-size:18px;

font-weight:700;

cursor:pointer;

transition:.35s;

box-shadow:0 12px 25px rgba(0,102,214,.30);

}

.inscription-btn:hover{

transform:translateY(-3px);

box-shadow:0 18px 35px rgba(0,102,214,.45);

}

.inscription-btn i{

margin-right:10px;

}
/* ==========================================
   CONNEXION
========================================== */

.login-link{

margin-top:30px;

text-align:center;

font-size:15px;

color:#666;

}

.login-link a{

color:#0066d6;

font-weight:700;

text-decoration:none;

}

.login-link a:hover{

text-decoration:underline;

}
/* ==========================================
   RESPONSIVE
========================================== */

@media(max-width:768px){

body{

padding:15px;

}

.logo-zone{

padding:30px 20px;

}

.logo-zone h1{

font-size:28px;

}

.entreprise-form{

padding:25px;

}

.form-grid{

grid-template-columns:1fr;

}

.form-section h2{

font-size:20px;

}

.inscription-btn{

font-size:16px;

padding:16px;

}

}
