@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap');

*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family:"poppins",sans-serif;
}

body {
            display: flex;
            flex-direction: column;
            min-height: 100vh;
            margin: 0;
            background-color: #343a40;
            color: white;
        }

        .content {
            margin-left: 240px;
            padding: 20px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            background:#343a40;
        }

.sidebar {
            background-color: #151616;
            color: white;
            padding: 15px;
            min-width: 250px;
            height: 100%;
            position: fixed;
        }
        .sidebar .logo{
           margin-bottom: 110px;
        }
        .sidebar h1 {
            font-size:22px;
            margin: 5px 0;
            line-height: 1.2;
        }
        .sidebar a {
            color: white;
            text-decoration: none;
            display: block;
            padding: 10px;
            margin: 5px 0;
            border-radius: 5px;
        }
        .sidebar a:hover {
            background-color: #495057;
            color: white;
            text-decoration: none;
        }

/* Dropdown Styles */
        .dropdown {
            position: relative;
            display: block;
        }

        .dropbtn {
            background-color: #151616;
            color: white;
            padding: 10px;
            text-decoration: none;
            border: none;
            width: 100%;
            text-align: left;
            cursor: pointer;
        }

        .dropdown-content {
            display: none;
            position: absolute;
            background-color: #343a40;
            min-width: 230px;
            z-index: 1;
        }

        .dropdown-content a {
            color: white;
            padding: 10px;
            text-decoration: none;
            display: block;
        }

        .dropdown-content a:hover {
            background-color: #495057;
        }

        .dropdown.active .dropdown-content {
            display: block;
        }

.nav{
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 999;
	background:#151616;
	box-shadow:inset 0 0 10px #77f6f6;
/*  box-shadow:inset 0 2px 10px greenyellow ;*/
	
}

.nav-bar{
	padding: 10px;
	max-width: 1400px;
	margin:auto;
	width: 100%;
	display: flex;
	justify-content:space-between;
	align-items: center;
}

.logo{
	width: 100px;
	height: 100px;
	border-radius: 50%;
}

.logo img{
	width: 100%;
	height: 100%;
}

.name{
	margin-left: 25px;
}

.name h1
          {
         	
         	font-family: sans-serif;
         	color: white;
         	text-transform: uppercase;
         	font-size: 2em;
         	letter-spacing: 4px;
            background: red;
         	/*background: linear-gradient(90deg, #000, red, #000);*/

            background: linear-gradient(90deg, #45f3ff, #ff2770, #45f3ff);

         	background-repeat: no-repeat;
         	background-size: 80%;

            animation:jay 3s linear infinite;

         	-webkit-background-clip: text;

         	-webkit-text-fill-color: transparent;
        
         }

    @keyframes jay
    {
    	0%{
    		background-position: -300%;
    	  }

    	100%{
    		background-position: 300%;
    	}
    }   


.button .console,
.logout,
.fetchBtn{
	outline: none;
	color: white;
	background: linear-gradient(115deg, #45f3ff 10%, #ff2770 90%);
	border: 2px solid ;
	padding: 10px 20px;
	margin-right: 20px;
	border-radius: 20px;
	cursor: pointer;
}

.fetchBtn{
        font-size: 16px;
        text-decoration: none;
        font-weight: 300;
    }

.menu{
	max-width: 1200px;
	width: 100%;
	padding: 20px;
/*	background: peachpuff;*/
	margin:0px auto;
	text-align: center;
/*	position: fixed;*/
}

.menu ul li a{
	color: white;
	text-decoration:none;
}

.menu ul li{
	display: inline-block;
	padding:7px 30px;
}

.menu ul li:hover{
	border-bottom: 2px solid #ff2770;
}


.main-box{
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
	margin-top: 100px;
/*	background: #23242a;*/
	color: white;
}

.main-box-container{
	max-width: 1200px;
	width: 100%;
/*	background: peachpuff;*/
/*	padding: 20px;*/
	display: flex;
	justify-content: center;
	align-items: center;
}

.main-box-content{
	padding: 10px;
	margin: 5px;
/*	background: pink;*/
}

.main-box-content h1{
	color: #ff2770;
}

.main-box-content p{
	color:lightgrey;
}

.box
{
	position: relative;
	width: 380px;
	height: 420px;
	background:#1c1c1c;
	border-radius: 8px;
	overflow: hidden;
	margin-top: 100px;
}

.box::before{
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 380px;
	height: 420px;
	background: linear-gradient(0deg,transparent,transparent,#45f3ff,#45f3ff,#45f3ff);
	z-index: 1;
	transform-origin: bottom right;
	animation: animate 6s linear infinite;
}

.box::after{
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 380px;
	height: 420px;
	background: linear-gradient(0deg,transparent,transparent,#45f3ff,#45f3ff,#45f3ff);
	z-index: 1;
	transform-origin: bottom right;
	animation: animate 6s linear infinite;
	animation-delay: -3s;
}

.borderLine{
	position: absolute;
	top: 0;
	inset: 0;
}

.borderLine::before{
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 380px;
	height: 420px;
	background: linear-gradient(0deg,transparent,transparent,#ff2770,#ff2770,#ff2770);
	z-index: 1;
	transform-origin: bottom right;
	animation: animate 6s linear infinite;
	animation-delay: -1.5s;
}

.borderLine::after{
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 380px;
	height: 420px;
	background: linear-gradient(0deg,transparent,transparent,#ff2770,#ff2770,#ff2770);
	z-index: 1;
	transform-origin: bottom right;
	animation: animate 6s linear infinite;
	animation-delay: -4.5s;
}

@keyframes animate{
	0%{
		transform: rotate(0deg);
	}

	100%{
		transform: rotate(360deg);
	}
}

.box form{
	position: absolute;
	inset: 4px;
	background:#222;
	padding: 50px 40px;
	display: flex;
	flex-direction: column;
	border-radius: 8px;
	z-index: 2;

}

.box form h2{
	color: #fff;
	font-weight: 500;
	text-align: center;
	letter-spacing: 0.1em;
}

.box form .input-box{
	position: relative;
	width: 300px;
	margin-top: 30px;
}

.box form .input-box input{
	position: relative;
	width: 100%;
	padding: 20px 10px 10px;
	background: transparent;
	outline: none;
	box-shadow: none;
	border:none;
	z-index: 10;
	color: #23242a;
	font-size: 1em;
	letter-spacing: 0.05em;
	transition: 0.5s;
}

.box form .input-box span{
	position: absolute;
	left: 0;
	padding: 20px 10px 10px;
	pointer-events: none;
	color: #8f8f8f;
	font-size: 1em;
	letter-spacing: 0.05em;
	transition: 0.5s;
}

.box form .input-box input:valid ~ span,
.box form .input-box input:focus ~ span
{
	color: #fff;
	font-size: 0.75rem;
	transform:translateY(-34px);
}

.box form .input-box i{
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 2px;
	background: #fff;
	border-radius:4px;
	overflow: hidden;
	transition: 0.5s;
	pointer-events: none;
}

.box form .input-box input:valid ~ i,
.box form .input-box input:focus ~ i{
	height: 44px;
}

.box form .button{
	width: 100px;
	margin-top: 35px;
	border: none;
	outline: none;
	cursor: pointer;
	padding: 9px 25px;
	background: #fff;
	font-size: 0.9em;
	border-radius: 4px;
	font-weight: 600;
/*	transform: translateX(100%);*/
}

.box form .button:active{
	opacity: 0.8;
}

/*footer{
	text-align: center;
	color: white;
	padding: 20px;
	font-size: 14px;
}*/

.footer {
            text-align: center;
            padding: 10px;
            background-color: #151616;
            color: white;
            width: 100%;
        }

  .advantageBtn{
  	background:linear-gradient(115deg, #45f3ff 10%, #ff2770 90%);
  	border: none;
  	outline: none;
  	border-radius: 5px;
  	color: white;
  }

