*{
    margin: 0;
    border: none;
    outline: none;
    user-select: none;
    padding: 0;

  
  
}
:root{
    --cream:#ffecdc;
    --brand-color:#24acf2;
    --gray:#202020;
}
body{
    background-color: var(--cream);
}

#main-w{
    position: fixed;
    width: 100%;
    height: 100px;
    left:0;
    top:0;
    background-color: #131313;
    display: grid;
    align-items: center;
    align-content: center;
    justify-items: left;
    grid-template-columns: 100px  auto;
}
#main-w>img{
    height:12%;
    position: relative;
    left: 10px;
}
#main-w>div{
    display: grid;
    height:100px;
    justify-items: left;
    width: stretch;
    overflow: hidden;
    display: grid;
    align-content: center;
    grid-template-rows: 40px 30px;
    position: relative;
    left: -20px;

   
}
#main-w>div>h1{
    color: #24acf2;
    font-family: "Momo Trust Display", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1.5rem;
    position: relative;
    top:10px;
}
#main-w>div>h2{
    color:#ffecdc;
    width: max(40vw,240px);
    text-align: left;
    font-family: "Momo Trust Display", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 0.6rem;
 


}


 
 #dp-wrapper{
     width:350px;
     height:200px;
     display: flex;
     flex-wrap: wrap;
     row-gap: 15px;
    justify-content: center;
    align-content: center;
    text-align: center;
    user-select: none;

   
   

    
    
    
 }
 #dp-wrapper>h2{
     width:80%;
     height:35%;
     border: 1px solid #202020;
     border-radius: 3px;
     font-size:18px;
     display: grid;
     align-items: center;
     font-family: "Orbitron", sans-serif;
    font-optical-sizing: auto;
    font-weight:500;
    font-style: normal;



 }
 #dp-wrapper>div{
        height: 5%;
        width: 90%;
        border: 1px solid #202020;
        border-radius:20px;
 }
 #dp-progress{
     width: 100%;
      height: 100%;
      background-color: #24acf2;
      border-radius:20px;
      transition: 1s linear ;
 }



.txt-i {
    font-family: "Space Grotesk", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    font-size: 15px;
    position: relative;
    left: -30px;
}
 

#alert-w{
     width: 350px;
     display: flex;
     flex-wrap: wrap;
     justify-content: center;
     row-gap: 6px;;
}

#alert-w-e{
    height:40px;
    width: 350px;
    position: relative;
    top:10px;
    border: 1px solid black;
    border-radius: 100px;
    display: flex;
    column-gap: 2px;;
    align-items: center;
  
    

}
#alert-w-e>img{
 height: 100%;
 position: relative;
 left: 5px;
}
#alert-w-s{
height: 100%;
width: 22.8%;
border-radius: 0 100px 100px 0;
background-color: #202020;
color: #f7dab9;
 position: absolute;
 right: 0;
}
#alert-w-e-d{
height: 20px;
width: 20px;
position:absolute;
right:24% ;
border-radius: 100px;
color:#f7dab9;
visibility: hidden;
background-color:transparent;
}
#alert-w-e>input{
 width:54%;
 height:100%;
 background-color: transparent;
 padding: 0 5px 0 5px;
 
}




 #cp-w{
     width:90vw;
     display: grid;
     row-gap: 15px;
    justify-items: center;
 }
 #cp-d{
      height:1px;
      width:70%;
      background-color: #202020;
 }
#cp-c{
   width: 100%;
   display:flex;
   flex-wrap: wrap;
   column-gap: 5px;
   justify-content: center;
}
#cp-c>h1, #cp-c>h2{
    color:#474747;
    padding-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    align-items: center;
   

}
#cp-w a{
text-decoration:none;
color:#24acfc;
}
.cp-f{
    font-family: "Orbitron", sans-serif;
    font-optical-sizing: auto;
    font-weight:500;
    font-style: normal;
    font-size:12px;
}

#container{
   width:100%;
   display:grid;
   position: absolute;
   left: 0;
   top:150px;
   justify-items: center;
   align-content: center;
   row-gap: 25px;
   column-gap: 40px;

}


/* countdown and mail wrapper*/

#dp-mail-wrapper{
 width: 80vw;
 display: flex;
 flex-wrap: wrap;
 justify-content: center;
 align-content: center;
 align-items: center;
 gap: 15px;
 
}


/*disable the auto background color when inserting mail from cached file  */
input:-webkit-autofill:focus,
input:-webkit-autofill:hover {
    box-shadow: 0 0 0px 1000px transparent inset !important;
}
input:-webkit-autofill {
    background-color: transparent !important;
    box-shadow: 0 0 0px 1000px transparent inset !important; /* or your color */
    -webkit-text-fill-color: #000 !important; /* text color */
    transition: background-color 5000s ease-in-out 0s;
}


/* Width of the scrollbar */
::-webkit-scrollbar {
    width: 6px; /* vertical scrollbar */
    height: 0px; /* horizontal scrollbar */
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 6px;
  }
  
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background-color: #fc8326;
    border-radius: 6px;
    border: 3px solid  transparent; /* space around thumb */
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background-color: rgb(201, 89, 3);
  }
  

