:root{
    --dark: #19283B;
    --light: #B8B9C1;
}
body{
    margin: 0;
    font-size: 15px;
    font-family: Poppins;
}

nav{
    width: 80%; 
    margin: auto;
}
nav ul{
    margin: 0;
    padding: 0;
    height: 50px;
    display: flex;
    justify-content: end;
    align-items: center;
    list-style: none;
}
nav ul li{
    margin-left: 50px;
    font-weight: 500;
}
nav ul li.active{
    color: var(--light);
}


@property --rotate {
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
}
.banner{
    height: 100vh;
    position: relative;
    background-image: conic-gradient(
        from var(--rotate), var(--dark), var(--light) 60%
    );

    z-index: -1;
    animation: rotateAnimation 6s linear infinite;
}
@keyframes rotateAnimation{
    from{
        --rotate: 0deg;
    }to{
        --rotate: -360deg;
    }
}
.banner .content{
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    width: 33%;
}
.banner h1{
    margin: 0;
    font-weight: 500;
 font-size: 36px;
font-family: 'Luminari', fantasy;
color:#B8B9C1;
}

.statis{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    color: var(--light);
top:50%;
left:70%;
position: absolute;
}
.statis p:nth-child(1){
    font-size: x-large;
}
.statis p:nth-child(2){
    font-size: xxx-large;
    font-weight: bold;
}




/* CSS */
.button-49,
.button-49:after {
  width: 150px;
  height: 76px;
  line-height: 78px;
  font-size: 20px;
  font-family: 'Bebas Neue', sans-serif;
  background: linear-gradient(45deg, transparent 5%, #ff013c00  5%);
  border: 0;
  color: #B8B9C1;
  letter-spacing: 3px;
  box-shadow: 6px 6px 6px #B8B9C1;
  outline: transparent;
  position: relative;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;

}

.button-49:after {
  --slice-0: inset(50% 50% 50% 50%);
  --slice-1: inset(80% -6px 0 0);
  --slice-2: inset(50% -6px 30% 0);
  --slice-3: inset(10% -6px 85% 0);
  --slice-4: inset(40% -6px 43% 0);
  --slice-5: inset(80% -6px 5% 0);
  
  content: 'login';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 3%, #00E6F6 3%, #00E6F6 5%, #FF013C 5%);
  text-shadow: -3px -3px 0px #F8F005, 3px 3px 0px #00E6F6;
  clip-path: var(--slice-0);
    justify-content: end;
}

.button-49:hover:after {
  animation: 1s glitch;
  animation-timing-function: steps(2, end);
}

@keyframes glitch {
  0% {
    clip-path: var(--slice-1);
    transform: translate(-20px, -10px);
  }
  10% {
    clip-path: var(--slice-3);
    transform: translate(10px, 10px);
  }
  20% {
    clip-path: var(--slice-1);
    transform: translate(-10px, 10px);
  }
  30% {
    clip-path: var(--slice-3);
    transform: translate(0px, 5px);
  }
  40% {
    clip-path: var(--slice-2);
    transform: translate(-5px, 0px);
  }
  50% {
    clip-path: var(--slice-3);
    transform: translate(5px, 0px);
  }
  60% {
    clip-path: var(--slice-4);
    transform: translate(5px, 10px);
  }
  70% {
    clip-path: var(--slice-2);
    transform: translate(-10px, 10px);
  }
  80% {
    clip-path: var(--slice-5);
    transform: translate(20px, -10px);
  }
  90% {
    clip-path: var(--slice-1);
    transform: translate(-10px, 0px);
  }
  100% {
    clip-path: var(--slice-1);
    transform: translate(0);
  }
}
.divdiv {
top:40%;
left:70%;
position: absolute;

}



@media (min-width: 768px) {
  .button-49,
  .button-49:after {
    width: 200px;
    height: 86px;
    line-height: 88px;
  }
}





/* CSS */
.button-89 {
  --b: 3px;   /* border thickness */
  --s: .45em; /* size of the corner */
  --color: #B8B9C1;
  
  padding: calc(.5em + var(--s)) calc(.9em + var(--s));
  color: var(--color);
  --_p: var(--s);
  background:
    conic-gradient(from 90deg at var(--b) var(--b),#0000 90deg,var(--color) 0)
    var(--_p) var(--_p)/calc(100% - var(--b) - 2*var(--_p)) calc(100% - var(--b) - 2*var(--_p));
  transition: .3s linear, color 0s, background-color 0s;
  outline: var(--b) solid #0000;
  outline-offset: .6em;
  font-size: 36px;
font-family: 'Luminari', fantasy;
  border: 0;
width:250px;

  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.button-89:hover,
.button-89:focus-visible{
  --_p: 0px;
  outline-color: var(--color);
  outline-offset: .05em;
}

.button-89:active {
  background: var(--color);
  color: #B8B9C1;
}