*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
    text-decoration: none;
}
a{
    text-decoration: none;
    color: black;
    font-weight: bold;
}
.card-icon {
    font-size: 2rem;
}
.login-container{
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #F2F2F2;
}
.login-body {
    width: 450px;
    padding: 35px;
    background: #ffff;
    border-radius: 8px;
    box-shadow: 10 10 #ffff;
}
.login-title {
    border-bottom: 2px solid #F2F2F2;
    margin-bottom: 15px;
    padding-bottom: 10px;
}
.login-title h5{
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.login-body .input-container {
    width: 100%;
    display: block;
}
.login-body .input-container input {
    width: 100%;
    margin-top: 5px;
    border: 2px solid #F2F2F2;
    outline: none;
    padding: 10px 15px;
    border-radius: 8px;
}

.login-body button {
    width: 100%;
    border: 0;
    padding: 12px;
    background: #4e73df;
    margin-top: 10px;
    border-radius: 8px;
    font-weight: bold;
    color: white;
    cursor: pointer;
}

.alert-error {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #F8D7DA;
    color: #501319;
    padding: 5px;
    margin-top: 10px;
    text-align: center;
    border-radius: 5px;
}

.show {
    width: 100%;
    padding: 10px 0;
    cursor: pointer;
}

.show input, .show label{
    cursor: pointer;
}
.container{
    display: block;
    width: 100%;
    margin: auto;
    padding: auto;
}

.new {
    background: #4e73df;
    padding: 10px;
    color: white;
    border-radius: 8px;
}

.home-container {
    min-width: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.disabled-link {
  pointer-events: none !important; /* bloque le clic */
  color: gray !important;
  /* background: gray !important; */
  opacity: .8;
  text-decoration: none !important;
  cursor:cell;
}