@import url('https://fonts.googleapis.com/css2?family=Alfa+Slab+One&display=swap');
body{
    max-width: 100vw;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    /* background: yellow; */
    background: rgb(224,43,24);
    background: linear-gradient(180deg, rgba(224,43,24,1) 0%, rgba(228,118,20,1) 48%, rgba(237,235,12,1) 100%);
}
.loginbox{
    position: absolute;
    width: 320px;
    height: 380px;
    background: #fff;
    color: #000;
    top: 60%;
    left: 50%;
    transform: translate(-50%,-50%);
    box-sizing: border-box;
    padding: 70px 30px;
    border-radius: 8px;
}
.liginLogo{
    width: 90px;
    height: 90px;
    background: #000;
    border-radius: 50%;
    position: absolute;
    top: -40px;
    left: calc(50% - 50px);
}
h1{
    margin: 0;
    padding: 0 0 20px;
    text-align: center;
    font-size: 22px;
}
.loginbox label{
    margin: 0;
    padding: 0;
    font-weight: bold;
}
.loginbox input{
    width: 100%;
    margin-bottom: 20px;
}
.loginbox input[type="text"], input[type="password"],input[type="email"]{
    border: none;
    border-bottom: 2px solid black;
    background: transparent;
    outline: none;
    height: 40px;
    font-size: 16px;
}
.loginbox input[type="submit"]{
    border: none;
    outline: none;
    height: 40px;
    background: orangered;
    color: black;
    font-size: 18px;
    font-weight: bold;
    border-radius: 20px;
}
.loginbox input[type="submit"]:hover{
    background: #F9B208;
    cursor: pointer;
}
.loginbox a{
    text-decoration: none;
    font-size: 12px;
    line-height: 20px;
    color: #000 ;
}
.loginbox a:hover{
    color: orangered;
    border-bottom: 1px solid black;
}
.waviy {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    -webkit-box-reflect: below -20px linear-gradient(transparent, rgba(0,0,0,.2));
    font-size: 60px;
    margin-top: 20px;
    letter-spacing: 9px;
}
.waviy span {
    font-family: 'Alfa Slab One', cursive;
    position: relative;
    display: inline-block;
    color: #F7FD04;
    text-transform: uppercase;
    animation: waviy 1s infinite;
    animation-delay: calc(.1s * var(--i));
}
  @keyframes waviy {
    0%,40%,100% {
      transform: translateY(0)
    }
    20% {
      transform: translateY(-20px)
    }
  }


















/* .header{
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 38px;
    letter-spacing: 5px;
    margin-top: 20px;
} */
/* .header{
    width: 200px;
    height: 50px;
    background-color: #000;
    position: relative;
    box-shadow: 0px 0px 5px 2px #000;
    overflow: hidden;
}
.header::before{
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%) rotate(-280deg);
    width: 160%;
    height: 110%;
    background-image: conic-gradient(#ff00bb 0deg, #ff00bb 90deg, transparent 130deg, transparent 180deg, #4530FF 180deg, #4530FF 270deg, transparent 310deg, transparent 360deg);
    transition: transform 2s;
}
.header:hover::before{
    transform: translate(-50%,-50%) rotate(-100deg);
}
.header::after{
    content: "SUNSYS";
    color: #ddd;
    position: absolute;
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    width: 192px;
    font-size: 17px;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
} */
