.gradient-animation {
    background: linear-gradient(-45deg, rgb(239, 120, 56), rgb(245, 140, 80), rgb(230, 100, 40), rgb(239, 120, 56)) !important;
}

.text-primary-700 {
    --tw-text-opacity: 1;
    color: rgb(17 144 109) !important;
}

.content-center {
    position: relative;
    z-index: 20;
    background-color: rgb(17 144 109 / 31%) !important;
    backdrop-filter: blur(5px);
    border-radius: 1rem;
    padding: 1.5rem;
}

.bg-primary-700 {
    --tw-bg-opacity: 1;
    background-color: rgb(255, 255, 255) !important;
}

.bg-secondary-600 {
    --tw-bg-opacity: 1;
    background-color: rgb(17 144 109) !important;
}

.h-12 {
    height: 5rem !important;
}

.border-white {
    --tw-border-opacity: 1;
    border-color: rgb(255 255 255) !important;
}

.mt-5 {
    margin-top: 1rem !important;
}

button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    font-size: 13px !important;
    font-weight: inherit;
    line-height: inherit;
    letter-spacing: inherit;
    color: inherit;
    margin: 0;
    padding: 0;
}

.py-3 {
    padding-top: 0.55rem !important;
    padding-bottom: 0.55rem !important;
}

.mb-6 {
    margin-bottom: 0.5rem !important;
}

.password-toggle {
    cursor: pointer;
    transition: all 0.3s ease;
}

.password-toggle:hover {
    transform: scale(1.1);
    color: #ea580c;
}

/* Style pour cacher le formulaire */
.login-form {
    display: none;
}

.identification-form {
    display: none;
}

/* Style pour cacher les boutons */
.hidden-buttons {
    display: none !important;
}

/* Animation du dégradé */
.gradient-animation {
    background: linear-gradient(-45deg, #047857, #065f46, #064e3b, #047857);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Animation des images */
.image-card {
    transition: all 0.5s ease;
    will-change: transform;
}

.image-card:hover {
    transform: scale(1.05);
}

/* Positionnement amélioré des images */
.image-container {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 400px;
}

.image-1 {
    position: absolute;
    top: 0%;
    left: 0%;
    width: 65%;
    z-index: 10;
}

.image-2 {
    position: absolute;
    bottom: 0%;
    right: 0%;
    width: 65%;
    z-index: 10;
}

.px-8 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
}

.content-center {
    position: relative;
    z-index: 20;
    background-color: rgba(4, 78, 59, 0.6);
    backdrop-filter: blur(5px);
    border-radius: 1rem;
    padding: 1.5rem;
}

/* Styles pour la modale de réinitialisation */
.modal {
    display: none;
    position: fixed;
    z-index: 50;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: #fefefe;
    margin: 10% auto;
    padding: 20px;
    border-radius: 0.5rem;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    animation: modalopen 0.3s;
}

@keyframes modalopen {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
}

.success-message {
    display: none;
    padding: 1rem;
    background-color: #d1fae5;
    color: #065f46;
    border-radius: 0.375rem;
    margin-bottom: 1rem;
}
@media (max-width: 424px) {
    .icone {
        display: none;
    }
}