@import url('https://fonts.googleapis.com/css2?family=Inter&family=Montserrat&display=swap');

*{
    scroll-behavior: smooth;
}
body{
    background-color: #212121;
    color:#FFF;
}

.inter{
    font-family: 'Inter', sans-serif;
}

.desc{
    color: #A3A3A3;
    font-style: normal;
    font-weight: 400;
    line-height: normal;

}

.input-custom {
    position: relative;
    box-sizing: border-box;
    background: #212121;
    border: solid 1px #6FB0E3;
    border-radius: 5px;
    width: 100%;
    padding: 0.4rem 1rem;
}

.input-custom:focus{
    outline: none;
}

.new-box::before {
    content: '';
    position: absolute;
    top: -1px; right: -1px; bottom: -1px; left: -1px;
    z-index: -1;
    border-radius: inherit; /* !importanté */
    background: linear-gradient(to right, #F7C573, #CE81A2, #8757E4, #60E7E3);
}
.new-box .new-box-child {
    display: block;
    padding: 0.6rem 1rem;
    text-align: center;
    font-size: 1.5rem;
    z-index: 10;
    border-radius: 10px;
    background-color: #282828;
    
}


.gradient-bg{
    background: linear-gradient(to right, #F7C573, #CE81A2, #8757E4, #60E7E3);

}

.custom-select {
    position: relative;
    box-sizing: border-box;

    color: #FFF;
    background: #212121;
    background-clip: padding-box; /* !importanté */
    border: solid 1px transparent; /* !importanté */
    border-radius: 10px;
    z-index: 100;
}



.custom-select::before {
    content: '';
    position: absolute;
    top: -1px; right: -1px; bottom: -1px; left: -1px;
    z-index: -1;
    border-radius: inherit; /* !importanté */
    background: linear-gradient(to right, #F7C573, #CE81A2, #8757E4, #60E7E3);
}

.selected-option {
    display: block;
    z-index: 10000000000000000000000000;
    
}

.new-box {
    position: relative;
    box-sizing: border-box;

    color: #FFF;
    background: #212121;
    background-clip: padding-box; /* !importanté */
    border: solid 1px transparent; /* !importanté */
    width: 100%;
    margin-top: 0.5rem; 
    border-radius: 10px;
    z-index: 10;
}



.options-list {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    list-style: none;
    z-index: 100;
    padding: 0;
    margin: 0;
    
    background: rgba(255, 245, 245, 0.2);
    backdrop-filter: blur(2px);
    border-top: none;
    border-radius: 0 0 4px 4px;
    display: none;
}

.options-list li {
    padding: 10px;
}

.options-list li:hover {
    background-color: rgba(0, 0, 0, 0.4);
}


.lock-length {
    position: relative;
    box-sizing: border-box;

    color: #FFF;
    background: #212121;
    background-clip: padding-box; /* !importanté */
    border: solid 1px transparent; /* !importanté */
    border-radius: 10px;
    z-index: 10;
}

.lock-length::before {
    content: '';
    position: absolute;
    top: -1px; right: -1px; bottom: -1px; left: -1px;
    z-index: -1;
    border-radius: inherit; /* !importanté */
    background: linear-gradient(to right, #F7C573, #CE81A2, #8757E4, #60E7E3);
}
.lock-length-child {
    display: block;
    padding: 0.6rem 1rem;
    text-align: center;
    z-index: 10;
    border-radius: 10px;
    background-color: #282828;
    
}

.border-bottom {
    position: relative;
}

.border-bottom::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px; /* Adjust the thickness of the border as needed */
    background: linear-gradient(to right, #F7C573, #CE81A2, #8757E4, #60E7E3);
}


.grad-line{
    background: linear-gradient(to bottom, #F7C573, #CE81A2, #8757E4, #60E7E3);

}


.text-gradient{
    background: linear-gradient(91deg, #F7C573 0.84%, #CE81A2 24.97%, #8757E4 66.01%, #60E7E3 102.72%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


.inter{
    font-family: 'Inter', sans-serif;
}

.gradient-box {
  
  
    position: relative;
    box-sizing: border-box;
  
    color: #FFF;
    background: #212121;
    background-clip: padding-box; /* !importanté */
    border: solid 1px transparent; /* !importanté */
    border-radius: 50px;
     
}

.gradient-box::before {
    content: '';
    position: absolute;
    top: -1px; right: -1px; bottom: -1px; left: -1px;
    z-index: -10;
    border-radius: inherit; /* !importanté */
    background: linear-gradient(to right, #F7C573, #CE81A2, #8757E4, #60E7E3);
}



.nav_item {
    position: relative;
    padding: 10px 0;
    transition: all ease-in-out 0.3s;
    overflow: hidden;
}

.nav_item::before {
    content: '';
    position: absolute;
    bottom: -10px;
    display: block;
    right: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, #F7C573, #CE81A2, #8757E4, #60E7E3);
    transition: bottom 0.3s ease-in-out; /* Add transition for smooth movement */
}

.nav_item:hover::before {
    bottom: 5px;
}

.nav_item:hover {
    background: linear-gradient(to right, #F7C573, #CE81A2, #8757E4, #60E7E3);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

