:root {
  --primary-bg: #13111C;
  --secondary-bg: #1E1B2E;
  --accent: rgb(61, 106, 255);
}

::selection {
  background: rgba(61, 106, 255, 0.2);
  color: #fff;
}

@import url('https://fonts.googleapis.com/css2?family=Shippori+Mincho&display=swap');

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  background-color: var(--primary-bg);
	color: var(--text-primary);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
  color: #fff;
  z-index: 1001;
  position: fixed;
  width: 100%;
}

.header__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
	
}

.burger__logo {
  display: flex;
  align-items: center;
}

.logo {
  height: 40px;
  margin-left: 10px;
  transition: transform 0.3s ease;
}

.login__reg {
  display: flex;
	flex-shrink: 0;
  gap: 15px;
	align-items: baseline;
}

.burger__menu {
	font-size: 1.8rem;
	cursor: pointer;
  color: rgb(61, 106, 255);
}


.logo:hover {
	transform: scale(1.1);
}

.login__reg {
	display: flex;
  gap: 10px;
}

.sign__up__btn {
  position: relative;
  padding: 10px 20px;
  border-radius: 7px;
  border: 1px solid rgb(61, 106, 255);
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 2px;
  background: transparent;
  color: #fff;
  overflow: hidden;
  box-shadow: 0 0 0 0 transparent;
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.sign__up__btn:hover {
  background: rgb(61, 106, 255);
  box-shadow: 0 0 30px 5px rgba(0, 142, 236, 0.815);
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.sign__up__btn:hover::before {
  -webkit-animation: sh02 0.5s 0s linear;
  -moz-animation: sh02 0.5s 0s linear;
  animation: sh02 0.5s 0s linear;
}

.sign__up__btn::before {
  content: '';
  display: block;
  width: 0px;
  height: 86%;
  position: absolute;
  top: 7%;
  left: 0%;
  opacity: 0;
  background: #fff;
  box-shadow: 0 0 50px 30px #fff;
  -webkit-transform: skewX(-20deg);
  -moz-transform: skewX(-20deg);
  -ms-transform: skewX(-20deg);
  -o-transform: skewX(-20deg);
  transform: skewX(-20deg);
}

@keyframes sh02 {
  from {
    opacity: 0;
    left: 0%;
  }

  50% {
    opacity: 1;
  }

  to {
    opacity: 0;
    left: 100%;
  }
}

.sign__up__btn:active {
  box-shadow: 0 0 0 0 transparent;
  -webkit-transition: box-shadow 0.2s ease-in;
  -moz-transition: box-shadow 0.2s ease-in;
  transition: box-shadow 0.2s ease-in;
}

a {
  text-decoration: none;
  color: #fff;
}

.login a{
  color: #fff;
  padding-right: 5px;
  transition: all 0.3s ease;
}

.login a:hover {
  color: var(--accent);
}