*{
    margin: 0;
    padding: 0;
}
html{
    height: 100%;
}
body{
    height: 100%;
    background: #121212;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;

    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: rgb(255, 255, 255);

    display: flex;
    justify-content: center;
    align-items: center;
}
a{
    color: rgb(255, 165, 0);
    text-decoration: none;

    background-image: linear-gradient(135deg, rgb(162, 0, 255), rgb(255, 165, 0));
    background-size: 100% 2px;
    background-position: bottom;
    background-repeat: no-repeat;
    line-height: 60px;
}
form{
    height: 575px;
    width: 500px;
    padding: 40px;
    border-radius: 10px;
    border-width: 2px;
    border-color: rgba(30, 30, 30, 0.2);
    border-style: solid;
    background: rgba(30, 30, 30, 0.6);
    backdrop-filter: blur(38px);
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.404);
    
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
}
h1{
    color: white;
    font-size: 38px;    

    background-image: linear-gradient(135deg, rgb(162, 0, 255), rgb(255, 165, 0));
    background-size: 100% 4px;
    background-position: bottom;
    background-repeat: no-repeat;
    line-height: 60px;
}
.inputs_container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
input{
    height: 64px;
    width: 240px;
    margin: 15px;
    padding: 0px 25px;
    border-radius: 10px;
    border: none;
    background-color: rgba(30, 30, 30, 0.6);
    box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.212);
    color: white;
    font-size: 20px;
    transition: 0.2s;
}
input:hover{
    background-color: rgba(60, 60, 60, 0.6);
}
input:focus{
    background-color: rgba(60, 60, 60, 0.6);
    outline: none;
    transform: scale(1.05);
}
input::placeholder{
    color: rgb(184, 184, 184);
}
button{
    height: 64px;
    width: 240px;
    margin: 15px;
    padding: 0px 25px;
    border-radius: 10px;
    border: none;
    color: white;
    font-size: 22px;
    background: linear-gradient(135deg, rgb(162, 0, 255), rgb(255, 165, 0));
    box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.212);
    transition: 0.2s;
}
button:hover{
    transform: scale(1.05);
    /* box-shadow: 25px 0 50px rgba(162, 0, 255, 0.5), -25px 0 50px rgba(255, 165, 0, 0.5); */
    cursor: pointer;
}
button:focus{
    outline: none;
    transform: scale(1.05);
    /* box-shadow: 25px 0 50px rgba(162, 0, 255, 0.5), -25px 0 50px rgba(255, 165, 0, 0.5); */
}
.error{
    height: 64px;
    width: 190px;
    margin: 15px;
    padding: 0px 25px;
    border-radius: 10px;
    border: none;
    box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.212);

    color: rgb(255, 26, 83);
    background-color: rgba(255, 57, 106, 0.2);
    font-size: 18px;
    font-style: bold;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.blobs{
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: -1;
}
.blob:nth-child(1){
  --angle-delay: 0s;
  --moving-delay: 0s;
  --color: rgba(255, 57, 106, 0.8);
}
.blob:nth-child(2){
  --angle-delay: -3s;
  --moving-delay: -2s;
  --color: rgba(255, 128, 77, 0.8);
}
.blob:nth-child(3){
  --angle-delay: -6s;
  --moving-delay: -4s;
  --color: rgba(162, 0, 255, 0.8);
}
.blob:nth-child(4){
  --angle-delay: -9s;
  --moving-delay: -6s;
  --color: rgba(0, 87, 156, 0.8);
}
.blob:nth-child(5){
  --angle-delay: -12s;
  --moving-delay: -8s;
  --color: rgba(255, 165, 0, 0.8);
}
.blob{
  position: relative;
  animation: angle 15s var(--angle-delay) infinite linear;
}
.blob::after{
  content: '';
  position: absolute;
  width: 240px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: var(--color);
  filter: blur(50px);
  animation: moving 10s var(--moving-delay) infinite ease-in-out alternate;
}
@keyframes angle {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes moving {
  from {
    transform: translate(-50%, -150%);
  }
  to {
    transform: translate(-50%, 50%);
  }
}
@media(max-width: 650px){
    form{
        height: 100%;
        width: 100%;
        justify-content: center;
    }
    .inputs_container{
        margin: 80px;
    }
    h1{
        font-size: 32px;
    }
    .blob::after{
        width: 160px;
    }
}