@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: #25252b;
}
@property --a {
    syntax: '<angle>';
    inherits: false;
    initial-value: 0deg;
}
.box{
    position: relative;
    width: 400px;
    height: 200px;
    /* background: repeating-conic-gradient(from var(--a),#ff2770 0%, #ff2770 5%, transparent 5%, transparent 40%,#ff2770 50%); */
    filter: drop-shadow(0 15px 50px #000);
    border-radius: 20px;
    overflow: hidden;
    animation: rotating 4s linear infinite;
    display: flex; 
    justify-content: center;
    align-items: center;
    transition: 0.5s;
}
.box{
    width: 450px;
    height: 500px;
}
@keyframes rotating {
    0%{
        --a: 0deg;
    }
    100%{
        --a: 360deg;
    }
}

.box::before{
    content: '';
    position: absolute;   
    width: 100%;
    height: 100%;
    /* background: repeating-conic-gradient(from var(--a),#45f3ff 0%, 
    #45f3ff 5%, transparent 5%, transparent 40%,#45f3ff 50%); */
    filter: drop-shadow(0 15px 50px #000);
    border-radius: 20px;
    animation: rotating 4s linear infinite;
    animation-delay: -1s;
}

.box::after{
    content: '';
    position: absolute;   
    inset: 4px;
    background: #2d2d39;
    border-radius: 15px;
    border: 8px solid #25252b;
}
.login{
    position: absolute;
    inset: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1000;
    box-shadow: inset 0 10px 20px rgba(0, 0, 0, 0.5);
    border-bottom: 2px solid rgba(255,255,255,0.5);
    transition: 0.5s; 
    color: #fff;   
    overflow: hidden;
}

.box:hover .login{
    inset: 40px;
}

.loginBx{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    width: 70%;
    transform: translateY(136px);
    transition: 0.5s;
}
.box .loginBx{
    transform: translateY(0px);
}
.loginBx h2{
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.2em;
}

.loginBx h2 i{
    color: #ff2770;
    text-shadow: 0 0 5px #ff2770, 0 0 25px #ff2770;
}

.loginBx input
{
    width: 100%;
    padding: 10px 20px;
    outline: none;
    border: none;
    color: #fff;
    font-size: 1em;
    background: rgba(0, 0, 0, 0.1);
    border: 2px solid #fff;
    border-radius: 30px;
}

.loginBx select
{
    width: 100%;
    padding: 10px 20px;
    outline: none;
    border: none;
    color: #fff;
    font-size: 1em;
    background: rgba(0, 0, 0, 0.1);
    border: 2px solid #fff;
    border-radius: 30px;
}
.loginBx input::placeholder
{
    color: #999;
}

.loginBx a
{
    width: 100%;
    padding: 10px 20px;
    outline: none;
    border: none;
    color: #fff;
	text-align: center;
	font-weight: 600;
    font-size: 1em;
	text-decoration: none;
    background: rgba(0, 0, 0, 0.1);
    border: 2px solid #fff;
    border-radius: 30px;
}
.loginBx a[type="submit"]
{
    background: #45f3ff;
    border: none;
    font-weight: 500;
    color:#111;
    cursor: pointer;
    transition: 0.5s;
}
.loginBx a[type="submit"]:hover
{
 
    box-shadow: 0 0 10px #45f3ff, 0 0 60px #45f3ff;
}
.group{
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.group a
{
    color: #fff;
    text-decoration: none;
}
.group a:nth-child(2)
{
   color: #ff2770;
   font-weight: 600;
}

.wrapper span {
	position: fixed;
	bottom: -180px;
	height: 50px;
	width: 50px;
	z-index: -1;
	background-color: #18191f;
	box-shadow: 0 0 50px #0072ff, 0 0 100px #0072ff, 0 0 150px #0072ff, 0 0 200px #0072ff;
	animation: animate 10s linear infinite;
}
.wrapper span:nth-child(1) {
	left: 60px;
	animation-delay: 0.6s;
}
.wrapper span:nth-child(2) {
	left: 10%;
	animation-delay: 3s;
	width: 60px;
	height: 60px;
}
.wrapper span:nth-child(3) {
	left: 20%;
	animation-delay: 2s;
}
.wrapper span:nth-child(4) {
	left: 30%;
	animation-delay: 5s;
	width: 80px;
	height: 80px;
}
.wrapper span:nth-child(5) {
	left: 40%;
	animation-delay: 1s;
}
.wrapper span:nth-child(6) {
	left: 50%;
	animation-delay: 7s;
}
.wrapper span:nth-child(7) {
	left: 60%;
	animation-delay: 6s;
	width: 100px;
	height: 100px;
}
.wrapper span:nth-child(8) {
	left: 70%;
	animation-delay: 8s;
}
.wrapper span:nth-child(9) {
	left: 80%;
	animation-delay: 6s;
	width: 90px;
	height: 90px;
}
.wrapper span:nth-child(10) {
	left: 90%;
	animation-delay: 4s;
}
.banner {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
}
.content h2 b {
	-webkit-text-fill-color: transparent;
	-webkit-text-stroke-width: 3px;
	-webkit-text-stroke-color: #fff;
	font-family: montserrat;
	font-size: 80px;
	text-transform: uppercase;
	letter-spacing: 12px;
}
@keyframes animate {
	0% {
		transform: translateY(0);
		opacity: 1;
	}
	80% {
		opacity: .7;
	}
	100% {
		transform: translateY(-800px) rotate(360deg);
		opacity: 0;
	}
}
