* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
 
body {
    background-color: #020224;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
}
 
.container {
    text-align: center;
    opacity: 0;
    animation: fadeIn 1.5s ease-out forwards;
}
 
.logo-container {
    margin-bottom: 0px;
}
 
.logo-container img {
    width: 150px;
    animation: logoZoom 2s ease-out forwards;
}
 
h1 {
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: #ffffff;
    opacity: 0;
    animation: textSlideIn 2s ease-out forwards;
}
 
.btn-access {
    background-color: #0869fc;
    color: #ffffff;
    padding: 15px 30px;
    text-decoration: none;
    font-size: 1.2rem;
    border-radius: 30px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
 
.btn-access:hover::before {
    width: 400%;
    height: 400%;
}
 
.btn-access:hover {
    background-color: #055ac8;
    box-shadow: 0px 0px 15px rgba(8, 105, 252, 0.7);
}
 
/* Animation pour fade-in du conteneur */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
 
/* Animation pour zoom du logo */
@keyframes logoZoom {
    from {
        transform: scale(0.7);
    }
    to {
        transform: scale(1);
    }
}
 
/* Animation du texte */
@keyframes textSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}