body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: url('/images/bg.jpg') no-repeat center center/cover;
    height: 100vh;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.login-card {
    display: flex;
    width: 700px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}


/* LEFT */
.left {
    width: 50%;
    background: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
}

.left img {
    width: 280px;
    background-color: transparent;
    display: block;
    margin: 0 auto;
    border-radius: 50%;
    height: 17em;
}



/* RIGHT */
.right {
    width: 35%;
    padding: 40px;
}

.right h2 {
    margin-bottom: 20px;
}

.input-group {
    margin-bottom: 15px;
}

.input-group label {
    display: block;
    font-size: 14px;
}

.input-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

/* BUTTON */
button {
    width: 100%;
    padding: 10px;
    background: #4a6cf7;
    border: none;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    margin-left: 1em;
}

button:hover {
    background: #3954d1;
}

.alert-success {
    background: #d4edda;
    padding: 10px;
    margin-bottom: 15px;
}

.forgot {
    margin-top: 10px;
    font-size: 12px;
    color: gray;
}

.input-icon {
    position: relative;
}

.input-icon input {
    width: 77%;
    padding: 10px 40px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

/* icône gauche */
.input-icon i.fa-envelope,
.input-icon i.fa-lock {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: gray;
}

/* icône oeil */
.toggle-password {
    position: absolute;
    right: -9px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: gray;
}


h2 {
    font-weight: 600;
}

label {
    font-weight: 500;
}

input {
    font-size: 14px;
}


.footer-left {
    position: fixed;
    bottom: 0px;
    right: 60px;
    font-size: 13px;
    color: rgba(13, 14, 14, 0.69);
    z-index: 999;
}
