body {

    background: #F4F6F9;

    height: 100vh;

    display: flex;

    justify-content: center;

    align-items: center;

}

.login-card {

    border-radius: 15px;

    padding: 20px;

}

button {

    height: 50px;

    font-size: 18px;

}



/* =========================================================
   LIEN SUIVI PUBLIC
========================================================= */

.tracking-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    padding: 8px 15px;

    border: 1px solid #0052CC;
    border-radius: 8px;

    color: #0052CC;

    background: #ffffff;

    text-decoration: none;

    font-size: 14px;
    font-weight: 600;

    transition: all 0.25s ease;
}

.tracking-link:hover {
    background: #0052CC;
    color: #ffffff;

    transform: translateY(-1px);

    box-shadow: 0 4px 10px rgba(0, 82, 204, 0.20);
}

.tracking-link span {
    white-space: nowrap;
}