@import url('https://fonts.googleapis.com/css?family=Nuto:400,700');

:root{
    --bg-color: #01141d;
    --color-primary: #2EDAF1;
    --color-secondary: #54595F;
    --color-text: #c2c2c2;
    --color-white: #fff;
    --primary-font-family: "Roboto";
    --secondary-font-family: "Roboto Slab";
    --text-font-family: "Orbitron", sans-serif; 
}


a{
    text-decoration: none;
}

li{
    list-style: none;
}

body{
    margin: 0;
    padding: 0;
    font-family: var(--primary-font-family);
    background-color: var(--bg-color);
    background-image: radial-gradient(at center center, #00E1FF24 0%, #01141d 70%);
    color: var(--color-white);
    overflow-x: hidden;
}

.context{
    padding-bottom: 50px;
}

.area{
    width: 100%;
    padding-bottom: 5px;
}

.circles{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -9999;
}

.circles li{
    position: absolute;
    display: block;
    list-style: none;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 80px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    animation: animate 25s linear infinite;
    bottom: -150px;
}

.circles li:nth-child(1){
    left: 25%;
    width: 80px;
    height: 80px;
    animation-delay: 0s;
}


.circles li:nth-child(2){
    left: 10%;
    width: 20px;
    height: 20px;
    animation-delay: 2s;
    animation-duration: 12s;
}

.circles li:nth-child(3){
    left: 70%;
    width: 20px;
    height: 20px;
    animation-delay: 4s;
}

.circles li:nth-child(4){
    left: 40%;
    width: 60px;
    height: 60px;
    animation-delay: 0s;
    animation-duration: 18s;
}

.circles li:nth-child(5){
    left: 65%;
    width: 20px;
    height: 20px;
    animation-delay: 0s;
}

.circles li:nth-child(6){
    left: 75%;
    width: 110px;
    height: 110px;
    animation-delay: 3s;
}

.circles li:nth-child(7){
    left: 35%;
    width: 150px;
    height: 150px;
    animation-delay: 7s;
}

.circles li:nth-child(8){
    left: 50%;
    width: 25px;
    height: 25px;
    animation-delay: 15s;
    animation-duration: 45s;
}

.circles li:nth-child(9){
    left: 20%;
    width: 15px;
    height: 15px;
    animation-delay: 2s;
    animation-duration: 35s;
}

.circles li:nth-child(10){
    left: 85%;
    width: 150px;
    height: 150px;
    animation-delay: 0s;
    animation-duration: 11s;
}


@keyframes animate {

    0%{
        transform: translateY(0) rotate(0deg);
        opacity: 1;
        border-radius: 0;
    }

    100%{
        transform: translateY(-1000px) rotate(720deg);
        opacity: 0;
        border-radius: 50%;
    }

}
  
.form-card {
    width: 500px;
    min-height: 250px;
    margin: 50px auto;
    background: rgba( 255, 255, 255, 0.15 );
    box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
    backdrop-filter: blur( 18px );
    -webkit-backdrop-filter: blur( 18px );
    border: 1px solid rgba( 255, 255, 255, 0.18 );
    border-radius: 1rem;
    padding: 1.5rem;
    z-index: 10;
    color: whitesmoke;
    display: block;
}

.title {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    padding-bottom: 10px;
    text-align: center;
    background: transparent;
    color: var(--color-white);
}

.form-group{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.form-item{
    display: flex;
    flex-direction: column;
    margin-top: 10px;
}

.form-group .form-item label{
    color: var(--color-white);
    padding: 5px 0;
}

.form-group input{
    width: 90%;
    padding: 10px;
    border: none;
    outline: none;
    background: rgba(248, 247, 247, 0.8);
    border-radius: 5px;
    backdrop-filter:blur(10px);
}

.sub-btn {
    margin: 25px 0;
    background: none;
    border: none;
    width: 100%;
    text-align: center;
    font-size: 1rem;
    color: var(--color-white);
    background-color: var(--bg-color);
    padding: 0.8rem 1.8rem;
    border-radius: 2rem;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.sub-btn:hover{
    opacity: 0.8;
}
.sub-btn:active{
    transform: scale(0.8);
}
.signup-btn{
    text-align: center;
    padding-top: 10px;
}
.signup-btn a{
    color: var(--color-white);
}
.signup-btn span{
    color: var(--bg-color);
    font-weight: 600;
    text-transform: uppercase;
}
.signup-btn span:hover,
.signup-btn a:hover{
    color: #ffffff;
}

@media (max-width: 768px) {
    body{
        overflow-x: hidden;
    }
    .circles{
        width: 90%;
    }
    .form-card {
        width: 80%;
    }
}