    @import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

    :root {
    /* CREATIVE LOADER */
    --creative-loader-bg-dot-top: #c31324;
    --creative-loader-bg-dot-bottom: #000000;
    }
      
    *{
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        text-decoration: none;
        font-family: 'Poppins', sans-serif;
        /* animation: animateBg 5s linear infinite; */
    }


    body {
        background: url("https://benmusic.ma/assets/frontoffice/image/magasin.jpg") no-repeat;
        background-size: cover;
        background-position: center;
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 100vh;
    }

    .container {
        position: absolute;
        width: 500px;
        height: 600px;
        background: #ffffff;
        border-radius: 10px;
        overflow: hidden;
    }

    /*.container::before {
         content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 500px;
        height: 500px;
        background: linear-gradient(90deg, transparent, #a3a3a3, #a3a3a3);
        transform-origin: bottom right;
        animation: animate 6s linear infinite;
    }

    .container::after {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 500px;
        height: 500px;
        background: linear-gradient(90deg, transparent, #d31580, #d31580);
        transform-origin: bottom right;
        animation: animate 6s linear infinite;
        animation-delay: -3s;
    } */

    @keyframes animate {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
    }

    form {
        position: absolute;
        inset: 2px;
        background: #ffffff;
        /* border-radius: 50%; */
        z-index: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    h2 {
        position: absolute;
        top: 100px;
        color: #000000; /*#d31580;*/
        font-size: 2rem;
        font-weight: 500;
    }

    .uc {
        position: absolute;
        top: 167px;
        width: 300px;
        border-top: 1px solid #c31324;
        text-align: center;
    }

    .uc b {
        position: relative;
        top: -15px;
        width: 150px;
        height: 25px;
        color: #c31324;
        background: #ffffff;
        font-size: 16px;
        border: 1px solid #c31324;
        border-radius: 50px;
        display: inline-block;
    }

    .inputBox {
        position: relative;
        width: 320px;
        margin-top: 35px;
    }

    .inputBox input {
        position: relative;
        width: 100%;
        padding: 12px 25px;
        border-radius: 50px;
        font-size: 1.1em;
        color: #000000;
        background: transparent;
        outline: none;
        border: 1px solid #bdbdbd;
        letter-spacing: .05em;
    }

    .inputBox label {
        position: absolute;
        left: 25px;
        top: 18px;
        color: #bdbdbd;
        background: #ffffff;
        padding: 0 2px;
        font-size: 13px;
        text-transform: uppercase;
        letter-spacing: .07em;
        transform: translateY(-27px);
        transition: transform .3s ease;
        pointer-events: none;
    }

    input:invalid + label {
        transform: translateY(0);
        background: #ffffff; 
    }

    input:focus { border-color: #a3a3a3; }

    input:focus + label {
        background: #ffffff;
        color: #a3a3a3;
        transform: translateY(-27px);
    }

    input[type="submit"] {
        position: relative;
        top: 40px;
        width: 320px;
        background: linear-gradient(to bottom, #c313248a, #c31324);
        padding: 10px;
        border-radius: 60px;
        font-size: 20px;
        font-weight: 600;
        cursor: pointer;
        color: white;
        border: 2px solid #c31324;
        outline: 3px solid #ffffff;
        transition: all .3s ease-in-out;
    }

    input[type="submit"]:hover, input[type="submit"]:focus {
        outline: 3px solid #ffffff;
        outline-offset: -6px;
        letter-spacing: .05em;
    }

    .link-container {
        position: relative;
        top: 60px;
        width: 270px;
        display: flex;
        justify-content: center;
    }

    .link-container:last-child { 
        margin-top: 15px;
        font-weight: 600; 
    }

    .link-container a {
        color: #bdbdbd;
        font-size: 1em;
        text-decoration: none;
        transition: .3s ease;
    }

    .link-container a:hover {
        color: #a3a3a3;
        text-decoration: underline;
    }
/***********Loader************/


  .fadeMe {
    position: relative;
    z-index: 99999;
    display: none;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 350px;
    background-color: #ffffff;
    padding: 74px;
    text-align: center;
    border: 2px solid #c31324;
    border-radius: 5px;
  }

  .fadeMe h3{
    font-size: 25px;
  }
  
  /* *************** */
  /* CREATIVE LOADER */
  /* *************** */
  .creative_loader-container {
    --creative-loader-size: 1rem;
    font-size: var(--creative-loader-size);
    --dot-size: 2em;
    --animation-duration: 2s;
    position: relative;
    min-width: calc(var(--dot-size) * 5);
    min-height: calc(var(--dot-size) * 2);
}

.creative_loader-container span {
    width: var(--dot-size);
    height: var(--dot-size);
    border-radius: 50%;
    position: absolute;
    bottom: 0;
    background: var(--creative-loader-bg-dot-bottom);
    animation: moveDot var(--animation-duration) linear infinite;
    border:1px solid black;
}

.creative_loader-container span:nth-child(2) {
    left: var(--dot-size);
    animation-delay: calc(var(--animation-duration) * 4 / -5);
}

.creative_loader-container span:nth-child(3) {
    left: calc(var(--dot-size) * 2);
    animation-delay: calc(var(--animation-duration) * 3 / -5);
}

.creative_loader-container span:nth-child(4) {
    left: calc(var(--dot-size) * 3);
    animation-delay: calc(var(--animation-duration) * 2 / -5);
}

.creative_loader-container span:nth-child(5) {
    left: calc(var(--dot-size) * 4);
    animation-delay: calc(var(--animation-duration) / -5);
}

@keyframes moveDot {
    0% {
        left: 0%;
        bottom: 0%;
    }
    10% {
        left: 0%;
        bottom: calc(100% - var(--dot-size));
        background-color: var(--creative-loader-bg-dot-top);
    }
    20% {
        bottom: calc(100% - var(--dot-size));
        left: calc(100% - var(--dot-size));
        background-color: var(--creative-loader-bg-dot-top);
    }
    30% {
        left: calc(100% - var(--dot-size));
        bottom: 0;
        background-color: var(--creative-loader-bg-dot-bottom);
    }
    100% {
        bottom: 0;
        left: 0;
    }
}
    
@media (max-width: 900px) {
    .container {
        width: 90%;
        background: #ffffff;
        border-radius: 10px;
        overflow: auto;
    }

    .inputBox{
        margin-bottom: 10px;
    }
    .inputRow{
        margin-top: 2px;
    }
}

    
    
