.font-weight-bold {
    font-weight: bold;
}
h1{
    font-size: 1.5rem
}
a,.btn-link{
    color: #e75033 ;
}
.text-orange {
    color: #e75033 !important;
}
.btn-orange {
    background-color: #e75033 !important;
    border-color: #e75033 !important;
    color: #fff !important;
}
.btn-orange:hover {
    background-color: #fff !important;
    border-color: #e75033 !important;
    color: #e75033 !important;
}
.border-orange {
    border: 1px solid #e75033 !important;
}
.btn-helloasso{
    background-color: #2E2F5E;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    display: inline-block;
    transition: background-color 0.3s ease;
}
/* General */
.card-header{
    background-color: #9EA3A7;
}
.btn-secondary{
    background-color: #9EA3A7;
    border-color: #9EA3A7;
}

/* Structure principale pour sticky footer */
html, body {
    height: 100%;
    margin: 0;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

#app {
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1 0 auto;
}

/* Styles du logo */
.logoHeader {
    width: 150px;
}
/* Styles du Navbar */
.navbar {
    border-bottom: 2px solid #e75033;
}
/* Styles du Btn */
.btn-info, .btn-primary {
    background-color: #e75033;
    border-color: #e75033;
    border-radius: 10px;
    color: #fff !important; 
    transition: all .3s !important;
    text-decoration: none !important;
}
.btn-info:hover, .btn-primary:hover {
    background-color: #fff;
    border-color: #e75033;
    color: #e75033 !important;
    transition: all .3s !important;
}
.bgBlue{
    background-color: #0583B9;
    border-color: #0583B9;
}
.form-check-input:checked {
    background-color: #0583B9;
    border-color: #0583B9;
}
/* Styles du footer */
.site-footer {
    flex-shrink: 0;
    background-color: #e75033;
    color: white;
    padding: 2rem 0;
    margin-top: auto;
}

.title-footer {
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
}

.accroche-footer {
    text-align: center;
    font-style: italic;
    margin: 1rem 0;
}

.adresse-footer {
    text-align: center;
    margin: 1rem 0;
}

.adresse-footer a {
    color: white;
    text-decoration: none;
}

.nav-footer {
    text-align: center;
}

.nav-footer .menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.nav-footer .menu-item a {
    color: white;
    text-decoration: none;
} 

/* Styles du formulaire d'inscription */
.register-form .password-requirements {
    font-size: 0.875rem;
}

.register-form .requirement {
    margin-bottom: 0.25rem;
    transition: color 0.3s ease;
}

.register-form .requirement i {
    margin-right: 0.5rem;
    width: 12px;
}

.register-form .requirement.text-success {
    color: #198754 !important;
}

.register-form .requirement.text-muted {
    color: #6c757d !important;
}

.register-form .border-bottom {
    border-bottom: 2px solid #e9ecef !important;
}

.register-form .text-primary {
    color: #e75033 !important;
}