158 lines
2.9 KiB
CSS
158 lines
2.9 KiB
CSS
/* ============================================================
|
|
INTER SANTÉ — LOGIN UI (ONLY)
|
|
============================================================ */
|
|
|
|
:root {
|
|
--login-blue: #0088cf;
|
|
--login-radius: 9px;
|
|
}
|
|
|
|
body, html {
|
|
height: 100%;
|
|
margin: 0;
|
|
overflow: hidden; /* Empêche le scroll */
|
|
font-family: 'DM Sans', sans-serif;
|
|
}
|
|
|
|
.login-wrapper {
|
|
display: flex;
|
|
height: 100vh;
|
|
}
|
|
|
|
/* --- Section Gauche (Carrousel) --- */
|
|
.slide-container {
|
|
width: 40vw;
|
|
height: 100vh;
|
|
position: relative;
|
|
background-color: #000;
|
|
}
|
|
|
|
.slides img {
|
|
width: 100%;
|
|
height: 100%;
|
|
position: absolute;
|
|
object-fit: cover;
|
|
opacity: 0;
|
|
transition: opacity 0.8s ease-in-out;
|
|
}
|
|
|
|
.slides img.active { opacity: 1; }
|
|
|
|
.nav-btn {
|
|
position: absolute;
|
|
top: 50%;
|
|
transform: translateY(-50%);
|
|
padding: 14px;
|
|
background-color: var(--login-blue);
|
|
opacity: 0.2;
|
|
color: #fff;
|
|
font-size: 24px;
|
|
cursor: pointer;
|
|
z-index: 10;
|
|
transition: 0.5s;
|
|
border-radius: 3px;
|
|
}
|
|
|
|
.nav-btn:hover { opacity: 0.8; }
|
|
.prev { left: 20px; }
|
|
.next { right: 20px; }
|
|
|
|
.dotsContainer {
|
|
position: absolute;
|
|
bottom: 10px;
|
|
left: 50%;
|
|
transform: translateX(-50%);
|
|
z-index: 10;
|
|
}
|
|
|
|
.dot {
|
|
width: 15px;
|
|
height: 15px;
|
|
margin: 0 2px;
|
|
border: 3px solid #bbb;
|
|
border-radius: 50%;
|
|
display: inline-block;
|
|
cursor: pointer;
|
|
transition: 0.6s;
|
|
}
|
|
|
|
.dot.active { background-color: #555; }
|
|
|
|
/* --- Section Droite (Formulaire) --- */
|
|
.content-side {
|
|
flex: 1;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
padding: 20px;
|
|
background: #fff;
|
|
}
|
|
|
|
.portal-logo {
|
|
width: 120px;
|
|
margin-bottom: 30px;
|
|
}
|
|
|
|
.login100-form-title {
|
|
color: var(--login-blue);
|
|
font-family: 'Syne', sans-serif;
|
|
font-weight: 700;
|
|
font-size: 28px;
|
|
margin-bottom: 25px;
|
|
}
|
|
|
|
/* Inputs & Labels */
|
|
.form-group-login {
|
|
margin-bottom: 15px;
|
|
text-align: center;
|
|
}
|
|
|
|
.form-group-login label {
|
|
display: block;
|
|
font-size: 12pt;
|
|
margin-bottom: 5px;
|
|
}
|
|
|
|
.input-login {
|
|
width: 300px !important;
|
|
height: 42px;
|
|
border: 2px solid var(--login-blue) !important;
|
|
border-radius: var(--login-radius) !important;
|
|
color: var(--login-blue) !important;
|
|
text-align: center;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.input-login::placeholder { color: var(--login-blue); opacity: 0.6; }
|
|
|
|
.login-btn {
|
|
width: 300px;
|
|
height: 45px;
|
|
background: var(--login-blue);
|
|
color: white;
|
|
font-size: 18px;
|
|
font-weight: 700;
|
|
border: none;
|
|
border-radius: var(--login-radius);
|
|
transition: 0.3s;
|
|
margin-top: 10px;
|
|
}
|
|
|
|
.login-btn:hover {
|
|
background: white;
|
|
color: var(--login-blue);
|
|
border: 2px solid var(--login-blue);
|
|
}
|
|
|
|
.footer-version {
|
|
position: fixed;
|
|
bottom: 10px;
|
|
font-size: 10pt;
|
|
color: #6c757d;
|
|
}
|
|
|
|
/* --- Responsive --- */
|
|
@media (max-width: 992px) {
|
|
.slide-container { display: none; }
|
|
} |