.error {
  color: red;
  margin-bottom: 5px;
  text-align: center;
}

a {
  text-decoration: none;
}

/* Style unifié pour les formulaires d'authentification */
.form-signin {
    max-width: 400px;
    margin: 20px auto;
    padding: 15px;
}

.h3 {
    font-size: 24px;
    color: #000000 !important;
    text-align: center;
    margin-bottom: 20px;
    font-weight: normal;
}

.form-floating {
    margin-bottom: 12px;
    position: relative;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #00000022 !important;
    border-radius: 6px;
    font-size: 16px;
    color: #1a1a1a;
    background: #fff;
    transition: all 0.2s ease;
    height: auto;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.form-control:focus {
    outline: none;
    border-color: #0066ff;
    box-shadow: 0 0 0 1px #0066ff;
}

.form-floating label {
    position: absolute;
    top: 0;
    left: 0;
    padding: 12px 15px;
    color: #666;
    transition: all 0.2s ease;
    pointer-events: none;
}

.forgot-link {
    color: #0066ff;
    text-decoration: none;
    font-size: 14px;
    display: inline-block;
    margin: 8px 0;
}

.connect-btn {
    width: 100%;
    padding: 12px;
    background: #0066ff;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    margin: 15px 0;
    transition: background-color 0.2s ease;
    font-weight: 500;
}

.connect-btn:hover {
    background: #0066ff;
    color: white;
}

.signup-text {
    color: #666;
    font-size: 14px;
    margin-top: 15px;
}

.signup-link {
    color: #0066ff;
    text-decoration: none;
}

.signup-link:hover {
    text-decoration: underline;
}

.alert-danger {
    color: #dc3545;
    font-size: 13px;
    margin-top: 4px;
    padding: 8px;
    border-radius: 4px;
    background-color: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.2);
}

/* Ajustements des espacements */
.mb-2 {
    margin-bottom: 8px !important;
}

.mb-3 {
    margin-bottom: 12px !important;
}

/* Footer Styles */
.footer {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    font-size: 14px;
    width: 100%;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    width: 100%;
}

.footer-section {
    flex: 1;
    text-align: center;
}

.footer-section h5 {
    color: #ccc;
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    padding: 5px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-section ul li i {
    margin-right: 10px;
}

.footer-section ul li a {
    color: #0066ff;
    text-decoration: none;
}

.footer-section ul li a:hover {
    color: #bbbbbb;
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 10px;
    border-top: 1px solid #444;
}

.social-links {
    display: flex;
    justify-content: center;
}

.social-link i {
    font-size: 20px;
    color: #fff;
}

.social-link:hover i {
    color: #1a8cff;
}

.social-links a {
    margin-right: 10px;
    /* Ajoute un espace à droite de chaque icône */
}

.social-links a:last-child {
    margin-right: 0;
    /* Assure qu'il n'y a pas d'espace supplémentaire après la dernière icône */
}