@import url('https://fonts.googleapis.com/css?family=Bungee|Poppins:900i');


@font-face {
    font-family: 'hHachimaki'; /* Name your font family */
    src: url('http://localhost/LuckyVaultCard/assets/fonts/hHachimaki.ttf'); /* Locate the .ttf file within your directory*/
}

body {
    background-image: url("http://localhost/LuckyVaultCard/assets/syst/casino.png");
    background-size: cover; /* Pour que l'image couvre toute la page */
    background-position: center; /* Pour la centrer */
    background-repeat: no-repeat; /* Pour éviter la répétition */
    overflow: hidden;
    background-color: #853E3F;
}

/* Messages */
.msg-error {
    background: #ff4c4c;
    color: #fff;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 15px;
    text-align: center;
}
.msg-success {
    background: #4caf50;
    color: #fff;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 15px;
    text-align: center;
}

#title{
    font-family: 'hHachimaki', Arial, sans-serif;
    font-size: 35px;
    text-align: center;

}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.login-box {
    background-color: #D3D3D3; /* Couleur grise de la boîte */
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.signup-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.signup-box {
    background: rgb(238,174,202);
    background: -moz-radial-gradient(circle, rgba(238,174,202,1) 0%, rgba(148,187,233,1) 100%);
    background: -webkit-radial-gradient(circle, rgba(238,174,202,1) 0%, rgba(148,187,233,1) 100%);
    background: radial-gradient(circle, rgba(238,174,202,1) 0%, rgba(148,187,233,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#eeaeca",endColorstr="#94bbe9",GradientType=1);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}


h2 {
    text-align: center;
}


.input-group input {
    width: 100%;
    padding: 15px;
    border: 1px solid #333;
    border-radius: 5px;
    font-size: 16px;
    background-color: #000; /* Fond noir pour la première case */
    color: #fff; /* Texte en blanc */
}

.input-group input[readonly] {
    cursor: default;
}

.input-group input:focus {
    outline: none;
}


.logo {
    width: 300px;
    height: 300px;
    border-radius: 50%;
}

.marquee {
    overflow: hidden;
    position: absolute;
    top: 0px;
    background: rgb(255, 255, 68);
    padding: 20px;
    color: black;
    width: 100%;
    font-weight: bold;
    height: 20px;
    margin-bottom: 20px;

}

.marquee p {
    position: absolute;
    white-space: nowrap;
    will-change: transform;
    animation: scroll-left 30s linear infinite;
}

@keyframes scroll-left {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(-100%);
    }
}


