
html {
    height: 100%;
}
body {
  margin:0;
  padding:0;
  height: 100vh;
  font-family: sans-serif;
  background-image: radial-gradient(#320643, #140534);
  overflow-x: hidden;
}

.image-box img{
  position: absolute;
  top: 35%;
  left: 10%;
}
.login-box {
  position: absolute;
  top: 56%;
  left: 30%;
  width: 400px;
  padding: 40px;
  transform: translate(-50%, -50%);
  background: rgba(0,0,0,.5);
  box-sizing: border-box;
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.6);
  border-radius: 10px;
}

.login-box h2 {
  margin: 0 0 30px;
  padding: 0;
  color: gold;
  text-align: center;
}

.login-box .user-box {
  position: relative;
}

.login-box .user-box input {
  width: 100%;
  padding: 10px 0;
  font-size: 16px;
  color: #fff;
  margin-bottom: 30px;
  border: none;
  border-bottom: 1px solid #fff;
  outline: none;
  background: transparent;
}
.login-box .user-box label {
  position: absolute;
  top:0;
  left: 0;
  padding: 10px 0;
  font-size: 16px;
  color: #fff;
  pointer-events: none;
  transition: .5s;
}

.bx-calendar{
    margin-left: 125px;
    font-size: 1.5rem;
    color: gold;
    vertical-align: middle; 
    margin-right: 5px;
}

.bx-time-five{
  margin-left: 300px;
  font-size: 1.5rem;
  color: gold;
  vertical-align: middle; 
  margin-right: 5px;
}

input[type="date"]::-webkit-calendar-picker-indicator,
input[type="time"]::-webkit-calendar-picker-indicator  {
    cursor: pointer;
    opacity: 0;
}
.login-box .user-box input:focus ~ label,
.login-box .user-box input:valid ~ label {
  top: -20px;
  left: 0;
  color: gold;
  font-size: 12px;
}

.login-box .user-box input[type="date"]:focus ~ label,
.login-box .user-box input[type="date"]:valid ~ label,
.login-box .user-box input[type="time"]:focus ~ label,
.login-box .user-box input[type="time"]:valid ~ label {
 top: 0px;
}

.date-time{
  display: flex;
  gap: 15px;
}

.login-box form a {
  position: relative;
  display: inline-block;
  font-size: 16px;
  text-decoration: none;
  text-transform: uppercase;
  overflow: hidden;
  transition: .5s;
  margin-top: 40px;
  letter-spacing: 4px
}
input[type="submit" i] {
    padding: 10px 20px;
    color: gold;
    background: none;
    border: none;
    font-size: 16px;
    text-decoration: none;
    text-transform: uppercase;
    overflow: hidden;
    margin: 5px;
    letter-spacing: 4px;
}
input[type="submit" i]:hover{
    background: gold;
    color: #000000;
    cursor: pointer;
    border-radius: 5px;
    box-shadow: 0 0 5px gold,
                0 0 25px gold,
                0 0 50px gold,
                0 0 100px gold;
}
.login-box a:hover {
  background: gold;
  color: #000000;
  border-radius: 5px;
  box-shadow: 0 0 5px gold,
              0 0 25px gold,
              0 0 50px gold,
              0 0 100px gold;
}

.login-box a span {
  position: absolute;
  display: block;
}

.login-box a span:nth-child(1) {
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, gold);
  animation: btn-anim1 1s linear infinite;
}

@keyframes btn-anim1 {
  0% {
    left: -100%;
  }
  50%,100% {
    left: 100%;
  }
}

.login-box a span:nth-child(2) {
  top: -100%;
  right: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, transparent, gold);
  animation: btn-anim2 1s linear infinite;
  animation-delay: .25s
}

@keyframes btn-anim2 {
  0% {
    top: -100%;
  }
  50%,100% {
    top: 100%;
  }
}

.login-box a span:nth-child(3) {
  bottom: 0;
  right: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(270deg, transparent, gold);
  animation: btn-anim3 1s linear infinite;
  animation-delay: .5s
}

@keyframes btn-anim3 {
  0% {
    right: -100%;
  }
  50%,100% {
    right: 100%;
  }
}

.login-box a span:nth-child(4) {
  bottom: -100%;
  left: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(360deg, transparent, gold);
  animation: btn-anim4 1s linear infinite;
  animation-delay: .75s
}

@keyframes btn-anim4 {
  0% {
    bottom: -100%;
  }
  50%,100% {
    bottom: 100%;
  }
}

.right-container ul
{
	position: absolute;
    left: 50%;
    top: 70%;
	margin: 0;
	padding: 0;
	display: flex;
}
.right-container ul li
{
	position: relative;
	list-style: none;
	width: 60px;
	height: 60px;
	margin: 0 30px;
	transform: rotate(-30deg) skew(25deg);
  box-shadow: 1px 1px 10px rgba(255, 242, 1, 0.5);
}
.right-container ul li span
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #000;
	transition: 0.5s;
	display: flex !important;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 30px !important;
}
.right-container ul li:hover span
{
	box-shadow: -1px 1px 1px rgba(0,0,0,.1);
}
.right-container ul li:hover span:nth-child(5)
{
	transform: translate(40px,-40px);
	opacity: 1;
}
.right-container ul li:hover span:nth-child(4)
{
	transform: translate(30px,-30px);
	opacity: .8;
}
.right-container ul li:hover span:nth-child(3)
{
	transform: translate(20px,-20px);
	opacity: .6;
}
.right-container ul li:hover span:nth-child(2)
{
	transform: translate(10px,-10px);
	opacity: .4;
}
.right-container ul li:hover span:nth-child(1)
{
	transform: translate(0,0);
	opacity: .2;
}
.right-container ul li:nth-child(1) span
{
	background: #3b5999;
}
.right-container ul li:nth-child(2) span
{
	background: #55acee;
}
.right-container ul li:nth-child(3) span
{
	background: #dd4b39;
}
.right-container ul li:nth-child(4) span
{
	background: #0077B5;
}
.right-container ul li:nth-child(5) span
{
	background: #e4405f;
}

.center
{
    position: absolute;
    top: 50%;
    left: 68%;
    transform: translate(-50%,-50%);
    box-shadow: 0 0 15px rgb(0, 0, 0);
}

.laptop
{
    width: 380px;
    height: 220px;
    background: #000;
    border: 15px solid #ffffff;
    box-shadow: 1px 0 0 #959595, -1px 0 0 #959595, 0 -1px 0 #959595;
    overflow: hidden;
}

.laptop img{
  width: 100%;
  height: 100%;
}
.laptop:before
{
    content: '';
    position: absolute;
    bottom: -10px;
    left: -15%;
    width: 130%;
    height: 10px;
    background: #fff;
    border-top: 2px solid #a8a8a8;
    border-bottom: 4px solid #a8a8a8;
    border-top-left-radius: 2px;
    border-top-right-radius: 2px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    box-shadow: 0 2px 15px rgb(0, 0, 0);
}
.laptop:after
{
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #000;
    left: 50%;
    top: 6px;
}

.btn-box{
  display: flex;
  position: absolute;
  top: 25%;
  left: 59%;
  gap: 20px;
}

.btn-box a{
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 10px #000;
  padding: 15px;
  color: gold;
  text-transform: uppercase;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.btn-box a:hover{
  color: #fff;
  transform: scale(1.1);
  transition: all 1s;
  box-shadow: 0 0 10px gold;
}


@media (max-width:768px) {
  .login-box{
    width: 90%;
    top: 75%;
    left: 50%;
    background: rgba(255, 255, 255, 0.2);
  }
  .bx {
    margin-left: 270px;
  }
  .bx-calendar{
    margin-left: 100px;
}

.bx-time-five{
  margin-left: 235px;
}
  .right-container .center{
    display: none;
  }
  .right-container ul{
    left: -5%;
    top: 120%;
    width: 100%;
    display: flex;
    padding: 10px;
  }

  .right-container ul li{
    transform: none;
  }

  .right-container ul li{
    width: 40px;
    height: 40px;
    padding: 0px;
  }
  .right-container ul li span{
    font-size: 20px !important;
    width: 50px;
  }
  .btn-box{
    left: 10%;
    top: 18%;
  }
  input[type="submit" i]{
    background: rgba(0, 0, 0, 0.8);
  }
}

