﻿/*@import url('open-iconic/font/css/open-iconic-bootstrap.min.css');

html, body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

a, .btn-link {
    color: #0366d6;
}

.btn-primary {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

.content {
    padding-top: 1.1rem;
}

.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.invalid {
    outline: 1px solid red;
}

.validation-message {
    color: red;
}

#blazor-error-ui {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }*/



/* Login page*/

/*.login-container {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 30px;
    padding-bottom: 40px;*/
/* background-color: #f5f5f5; */
/* height:100%; */
/*width: 100%;
    align-content: center;
}

.login-title {
    align-self: center;
    padding-bottom: 20px;
}

.login-subtitle {
    align-self: center;
    padding-bottom: 114px;
}

.login-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.form-signin {
    width: 100%;
    max-width: 330px;
    padding: 15px;
    margin: auto;
}

    .form-signin .checkbox {
        font-weight: 400;
    }

    .form-signin .form-control {
        position: relative;
        box-sizing: border-box;
        height: auto;
        padding: 10px;
        font-size: 16px;
    }

        .form-signin .form-control:focus {
            z-index: 2;
        }

    .form-signin input {
        margin-bottom: 5px;
        border-bottom-right-radius: 0;
        border-bottom-left-radius: 0;
    }

        .form-signin input[type="password"] {
            border-top-left-radius: 0;
            border-top-right-radius: 0;
        }*/


@font-face {
    font-family: "star";
    src: url('../fonts/start.woff2') format('woff2'); /* Remplacez par le chemin de votre fichier de police WOFF2 */
}

.star {
    font-family: 'star', sans-serif; /* Utilisez la police avec les étoiles */
}

.mud-input > input.mud-input-root-outlined, div.mud-input-slot.mud-input-root-outlined {
    padding-top: 16px !important;
    /* padding-bottom:16px !important;*/
}

.spinner {
    border: 6px solid silver;
    border-top: 6px solid #007452;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 700ms linear infinite;
    top: 40%;
    left: 45%;
    right: 45%;
    position: absolute;
}

@keyframes spin {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg)
    }
}

.body {
    background: #310404;
    font-family: 'Roboto Condensed', sans-serif;
}

.container {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: hsla(141, 100%, 25%, 1); /* Teinte plus foncée de #5EA43E */
    background: radial-gradient(circle, hsla(141, 100%, 25%, 1) 11%, hsla(141, 56%, 40%, 1) 46%, hsla(150, 100%, 23%, 1) 100%); /* Dégradé avec #007452 et teintes plus sombres */
    background: -moz-radial-gradient(circle, hsla(141, 100%, 25%, 1) 11%, hsla(141, 56%, 40%, 1) 46%, hsla(150, 100%, 23%, 1) 100%);
    background: -webkit-radial-gradient(circle, hsla(141, 100%, 25%, 1) 11%, hsla(141, 56%, 40%, 1) 46%, hsla(150, 100%, 23%, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#3D6F30", endColorstr="#007452", GradientType=1); /* #3D6F30 est une teinte plus foncée de #5EA43E */
}



.content {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    z-index: 1000;
}

.container h2 {
    position: absolute;
    top: 50%;
    line-height: 100px;
    height: 100px;
    margin-top: -50px;
    font-size: 100px;
    width: 100%;
    text-align: center;
    color: transparent;
    animation: blurFadeInOut 3s ease-in backwards;
}

    .container h2.frame-1 {
        animation-delay: 0s;
    }

    .container h2.frame-2 {
        animation-delay: 2.5s;
    }

    .container h2.frame-3 {
        animation-delay: 5s;
    }

    .container h2.frame-4 {
        font-size: 200px;
        animation-delay: 7.5s;
    }

    .container h2.frame-5 {
        animation: none;
        color: transparent;
        text-shadow: 0px 0px 1px #fff;
    }

        .container h2.frame-5 span {
            animation: blurFadeIn 3s ease-in 12s backwards;
            color: transparent;
            text-shadow: 0px 0px 1px #fff;
        }

            .container h2.frame-5 span:nth-child(2) {
                animation-delay: 13s;
            }

            .container h2.frame-5 span:nth-child(3) {
                animation-delay: 14s;
            }

@keyframes blurFadeInOut {
    0% {
        opacity: 0;
        text-shadow: 0px 0px 40px #fff;
        transform: scale(0.9);
    }

    20%,75% {
        opacity: 1;
        text-shadow: 0px 0px 1px #fff;
        transform: scale(1);
    }

    100% {
        opacity: 0;
        text-shadow: 0px 0px 50px #fff;
        transform: scale(0);
    }
}

@keyframes blurFadeIn {
    0% {
        opacity: 0;
        text-shadow: 0px 0px 40px #fff;
        transform: scale(1.3);
    }

    50% {
        opacity: 0.5;
        text-shadow: 0px 0px 10px #fff;
        transform: scale(1.1);
    }

    100% {
        opacity: 1;
        text-shadow: 0px 0px 1px #fff;
        transform: scale(1);
    }
}

@keyframes fadeInBack {
    0% {
        opacity: 0;
        transform: scale(0);
    }

    50% {
        opacity: 0.4;
        transform: scale(2);
    }

    100% {
        opacity: 0.2;
        transform: scale(5);
    }
}
