﻿
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
}


#header-curve {
    position: absolute;
    /*background-image: linear-gradient(#333333, #ffffff);*/
    /*background-color: #FEE600;*/
    /*background-color: #FE0020;*/
    top: 60%;
    left: -25%;
    width: 150%;
    height: 100%;
    border-top-right-radius: 100%;
    border-top-left-radius: 100%;
    z-index: 0;
    background: radial-gradient( ellipse at center, #FE0020 50%, #333333 100% );
}




#Render-Body {
    /*background-color:aquamarine;*/
    padding: 10px;
}


.body-connexion {
    align-items: center;
    display: flex;
    justify-content: center;
    height: 100vh;
    background-image: url('../../Image/Fond_1.png');
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
}

.form-connexion {
    border-radius: 20px;
    box-sizing: border-box;
    background-color: #ffffff;
    padding: 20px;
    width: 400px;
    opacity: 90%;
}

.subtitle {
    color: #316ab0;
    font-family: sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin-top: 10px;
    text-align: center;
}

.subtitle {
    color: #316ab0;
    font-family: sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin-top: 10px;
    text-align: center;
}

.input-container {
    height: 50px;
    position: relative;
    width: 100%;
}

.ic1 {
    margin-top: 40px;
}

.ic2 {
    margin-top: 30px;
}

.input {
    background-color: #303245;
    border-radius: 12px;
    border: 0;
    box-sizing: border-box;
    color: #eee;
    font-size: 18px;
    height: 100%;
    outline: 0;
    padding: 4px 20px 0;
    width: 100%;
}

.cut {
    background-color: #ffffff;
    border-radius: 10px;
    height: 20px;
    left: 20px;
    position: absolute;
    top: -20px;
    transform: translateY(0);
    transition: transform 200ms;
    width: 95px;
}

.cut-long {
    background-color: #FEE600;
    border-radius: 10px;
    height: 20px;
    left: 20px;
    position: absolute;
    top: -20px;
    transform: translateY(0);
    transition: transform 200ms;
    width: 240px;
}

.cut-short {
    width: 70px;
}

.input:focus ~ .cut,
.input:focus ~ .cut-long,
.input:not(:placeholder-shown) ~ .cut,
.input:not(:placeholder-shown) ~ .cut-long {
    transform: translateY(8px);
}

.placeholder {
    color: #ffffff;
    font-family: sans-serif;
    left: 20px;
    line-height: 14px;
    pointer-events: none;
    position: absolute;
    transform-origin: 0 50%;
    transition: transform 200ms, color 200ms;
    top: 20px;
}

.input:focus ~ .placeholder,
.input:not(:placeholder-shown) ~ .placeholder {
    transform: translateY(-30px) translateX(10px) scale(0.75);
}

.input:not(:placeholder-shown) ~ .placeholder {
    color: #316ab0;
}

.input:focus ~ .placeholder {
    color: #316ab0;
}

.submit {
    background-color: #316ab0;
    border-radius: 12px;
    border: 0;
    box-sizing: border-box;
    color: #eee;
    cursor: pointer;
    font-size: 18px;
    height: 50px;
    margin-top: 38px;
    text-align: center;
    width: 100%;
}

    .submit:active {
        background-color: #0288d1;
    }

.MSG_ERR {
    width: 100%;
    color: #ff0000;
    margin: 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
}

    .MSG_ERR ul {
        list-style: none;
    }

.Politique_MDP {
    width: 100%;
    color: #316ab0;
    margin: 10px;
    font-style: italic;
}

.COMBO {
    display: inline-block;
    width: 100%;
    height: 100%;
    padding: .375rem 1.75rem .375rem .75rem;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    color: #eee;
    vertical-align: middle;
    background-color: #303245;
    border: 0;
    border-radius: 12px;
    cursor: pointer;
}

    .COMBO:hover::before {
        color: rgba(255, 255, 255, 0.6);
        background-color: rgba(255, 255, 255, 0.2);
    }

    .COMBO:focus ~ .placeholder,
    .COMBO:not(:placeholder-shown) ~ .placeholder {
        transform: translateY(-30px) translateX(10px) scale(0.75);
    }

    .COMBO:not(:placeholder-shown) ~ .placeholder {
        color: #316ab0;
    }

    .COMBO:focus ~ .placeholder {
        color: #316ab0;
    }

    .COMBO:focus ~ .cut,
    .COMBO:focus ~ .cut-long,
    .COMBO:not(:placeholder-shown) ~ .cut,
    .COMBO:not(:placeholder-shown) ~ .cut-long {
        transform: translateY(8px);
    }


/*PAGINATION*/
.Pagination-content {
    width: 100%;
    text-align: center;
    margin-top: 10px;
}

.Pagination {
    display: inline-flex;
    box-shadow: 0 5px 10px #333;
    /*background: #316ab0;*/
    border-radius: 5px;
}

#Pagination-precedent {
    border-right: solid;
    border-width: 1px;
    border-color: #ffffff;
}

#Pagination-suivant {
    border-left: solid;
    border-width: 1px;
    border-color: #ffffff;
}

.Pagination li {
    list-style: none;
}

    .Pagination li a {
        /*color: #e30613;*/
        text-decoration: none;
        font-size: 18px;
        font-weight: 500;
        padding: 9px 15px;
        border-radius: 5px;
        transition: all 0.3s ease;
        cursor: pointer;
    }

        .Pagination li a:hover {
            background: #333;
            color: #ffffff;
        }

.Pagination-li-active {
    cursor: default;
    border-radius: 5px;
    background: #333;
    color: #ffffff;
}
