﻿body::before {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background:
		linear-gradient(45deg, transparent 48%, rgba(139, 92, 246, 0.03) 49%, rgba(139, 92, 246, 0.03) 51%, transparent 52%),
		linear-gradient(-45deg, transparent 48%, rgba(59, 130, 246, 0.03) 49%, rgba(59, 130, 246, 0.03) 51%, transparent 52%);
	background-size: 30px 30px;
	z-index: -1;
}

body::after {
	content: '';
	position: fixed;
	top: 0;
	left: -100%;
	width: 200%;
	height: 100%;
	background:
		radial-gradient(circle at 20% 50%, rgba(0, 0, 0, 0.3) 0%, transparent 50%), radial-gradient(circle at 80% 50%, rgba(9, 102, 255, 0.2) 0%, transparent 50%), radial-gradient(circle at 50% 50%, rgba(43, 31, 37, 0.2) 0%, transparent 50%);
	z-index: -2;
}


.sidebar {
	position: fixed;
	left: 0;
	top: 0;
	width: 200px;
	height: 100vh;
	background: #070918;
	border-right: 1px solid #333;
	z-index: 1000;
	overflow-y: auto;
	transition: all 0.3s ease;
	box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
}


.loginpage button {
	background: #2C3786;
	color: white;
	padding: 15px 32px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 16px;
	margin: 4px 2px;
	cursor: pointer;
	border: none;
	border-radius: 4px;
	color: white;
	font-weight: bold;
}


.loginpage .containerstart {
	text-align: center;
	padding: 20px;
	background: rgb(7, 9, 24);
	border-radius: 20px;
  }

  .loginpage .title {
	font-size: 33px;
	margin-bottom: 24px;
	font-weight: 200;
	text-transform: uppercase;
	color: rgb(255, 255, 255);
	max-width: 400px;
	font-weight: bold;
  }