  * {margin:0; padding:0; box-sizing:border-box; font-family:'Montserrat', sans-serif;}

  body {
    height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    background: url('../image/barber.jpg') center center/cover;
    position: relative;
  }

  body::before {
    content:"";
    position:absolute;
    top:0; left:0;
    width:100%; height:100%;
    background: rgba(0,0,0,0.5);
    z-index:0;
  }

  .login-container {
    position: relative;
    z-index:1;
    width:380px;
    padding:50px 35px;
    border-radius:25px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(20px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
    display:flex;
    flex-direction:column;
    align-items:center;
  }

  .login-container img {
    width:100px;
    margin-bottom:35px;
    border-radius:50%;
    box-shadow:0 0 20px rgba(255,255,255,0.3);
  }

  .input-box {
    position: relative;
    width:100%;
    margin-bottom:25px;
  }

  .input-box input {
    width:100%;
    padding:15px;
    background: rgba(255,255,255,0.15);
    border:none;
    border-radius:12px;
    outline:none;
    color:#fff;
    font-size:1em;
    text-align:center;
    transition:0.3s;
  }

  .input-box input:focus {
    background: rgba(255,255,255,0.25);
    box-shadow:0 0 15px rgba(255,255,255,0.3);
  }

  .input-box label {
    position:absolute;
    top:15px;
    left:20px;
    color:#fff;
    pointer-events:none;
    transition:0.3s;
  }

  .input-box input:focus ~ label,
  .input-box input:valid ~ label {
    top:-10px;
    left:15px;
    font-size:0.8em;
    color:#ffdc73;
    background: rgba(0,0,0,0.2);
    padding:0 5px;
    border-radius:5px;
  }

  .otp-container {
    display:flex;
    justify-content:space-between;
    margin-bottom:30px;
    width:100%;
  }

  .otp-container input {
    width:50px;
    height:50px;
    text-align:center;
    font-size:1.5em;
    border:none;
    border-radius:15px;
    background: rgba(255,255,255,0.15);
    color:#fff;
    transition:0.3s;
  }

  .otp-container input:focus {
    box-shadow:0 0 15px rgba(255,220,115,0.7), 0 0 25px rgba(255,110,196,0.5);
    background: rgba(255,255,255,0.25);
  }

  .btn {
    width:100%;
    padding:15px;
    border:none;
    border-radius:50px;
    cursor:pointer;
    font-size:1em;
    background: linear-gradient(135deg,#ff6ec4,#7873f5,#42f5b3);
    color:#fff;
    box-shadow:0 0 20px rgba(255,255,255,0.3);
    transition:0.4s;
  }

  .btn:hover {
    transform:scale(1.05);
    box-shadow:0 0 30px rgba(255,110,196,0.7), 0 0 50px rgba(120,115,245,0.5);
  }

  @media(max-width:450px) {
    .login-container { width:100%; padding:35px; }
    .otp-container input { width:40px; height:45px; font-size:1.2em; }
  }

  .layer {
  position: relative;
  /* display: inline-block; */
  padding: 10px 20px;
  /* color: #03e9f4; */
  font-size: 16px;
  /* text-decoration: none; */
  /* text-transform: uppercase; */
  overflow: hidden;
  transition: 0.5s;
  /* margin-top: 40px; */
  /* letter-spacing: 4px; */
}
.layer>span {
  position: absolute;
  display: block;
}
.layer>span:nth-child(1) {
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #03e9f4);
  animation: btn-anim1 1s linear infinite;
}

@keyframes btn-anim1 {
  0% {
    left: -100%;
  }
  50%,
  100% {
    left: 100%;
  }
}

.layer>span:nth-child(2) {
  top: -100%;
  right: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, transparent, #03e9f4);
  animation: btn-anim2 1s linear infinite;
  animation-delay: 0.25s;
}

@keyframes btn-anim2 {
  0% {
    top: -100%;
  }
  50%,
  100% {
    top: 100%;
  }
}

.layer>span:nth-child(3) {
  bottom: 0;
  right: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(270deg, transparent, #03e9f4);
  animation: btn-anim3 1s linear infinite;
  animation-delay: 0.5s;
}

@keyframes btn-anim3 {
  0% {
    right: -100%;
  }
  50%,
  100% {
    right: 100%;
  }
}
.layer>span:nth-child(4) {
  bottom: -100%;
  left: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(360deg, transparent, #03e9f4);
  animation: btn-anim4 1s linear infinite;
  animation-delay: 0.75s;
}

@keyframes btn-anim4 {
  0% {
    bottom: -100%;
  }
  50%,
  100% {
    bottom: 100%;
  }
}

.footer-bar {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 12px 40px;
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	background: rgba(255, 255, 255, 0.15);
	border-top: 1px solid rgba(255, 255, 255, 0.3);
	color: #ff9000;
	display: flex;
	justify-content: space-between; /* changed from flex-end */
	align-items: center;
	font-size: 0.95rem;
	letter-spacing: 0.5px;
	text-shadow: 0 0 5px rgba(56, 211, 159, 0.7);
	box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.2);
	z-index: 999;
}

.footer-bar b > a {
	color: #00aaf7;
	margin-left: 5px;
	text-shadow: 0 0 6px rgba(0, 170, 247, 0.6);
}

@media screen and (max-width: 900px) {
	.footer-bar {
		flex-direction: column;
		text-align: center;
		padding: 10px 20px;
		font-size: 0.85rem;
	}
}

