*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

body{
    display: flex;
    min-height: 100vh;
    align-items: center;
    justify-content: center;
    
}
.bubble-background{
    position:absolute;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: -1;
    overflow: hidden;
}

.circle{
    position:absolute;
    border-radius: 50%;
    background: rgb(7, 59, 246);
    animation: bubble 15s infinite;
    box-shadow: 0px 0px 1px 0px #508fb9;

}
.circle2{
    position:absolute;
    border-radius: 50%;
    background: rgb(244, 15, 118);
    animation: bubbles 15s infinite;
    box-shadow: 0px 0px 1px 0px #508fb9;

}

.xxlarge{
    width: 1100px;
    height: 1100px;
    left: -500px;
    bottom: -500px;
}

.small{
    width: 200px;
    height: 200px;
    left: -100px;
    bottom: -100px;
}
.medium{
    width: 400px;
    height: 400px;
    left: -200px;
    bottom: -200px;
}
.large{
    width: 600px;
    height: 600px;
    left: -300px;
    bottom: -300px;
}
.xlarge{
    width: 800px;
    height: 800px;
    left: -400px;
    bottom: -400px;
}


.xxlarge2{
    width: 1100px;
    height: 1100px;
    right: -500px;
    top: -500px;
}

.small2{
    width: 200px;
    height: 200px;
    right: -100px;
    top: -100px;
}
.medium2{
    width: 400px;
    height: 400px;
    right: -200px;
    top: -200px;
}
.large2{
    width: 600px;
    height: 600px;
    right: -300px;
    top: -300px;
}
.xlarge2{
    width: 800px;
    height: 800px;
    right: -400px;
    top: -400px;
}
.color1{
opacity: 0.2;
}
.color2{
opacity: 0.5;
}
.color3{
opacity: 0.7;
}
.color4{
opacity: 0.8;
}
.color5{
opacity: 0.9;
}

@keyframes bubble {
    0%{
        transform: scale(0.8);
    }
    50%{
        transform: scale(1.2);
    }

    100%{
        transform: scale(0.8);
    }
}
    
@keyframes bubbles {
    0%{
        transform: scale(0.8);
    }
    50%{
        transform: scale(1.2);
    }

    100%{
        transform: scale(0.8);
    }
    
}
.container{
    width: 430px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 0 1em 0.5em rgba(55, 21, 21, 0.45);
    backdrop-filter: blur(1em);
    transition: all 2.85s ease;
}
.container:hover .content img{
    transform: translateX(40px);
}

.container h1{
    font-size: 25px;
    font-weight: 500;
    padding: 20px 25px;
    border-bottom: 1px dashed grey;
}

.container .content{
    margin: 25px 25px 25px;
}

.content .inputs{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.inputs input{
    height: 40px;
    width: 45px;
    margin: 4px;
    border-radius: 5px;
    border: 2px dashed #b5b5b5;
    background: none;
    color: #000000;
    text-align: center;
    font-size: 24px;
    text-transform: uppercase;
    font-weight: 800;

}
.content .user-input{
    width: 100%;
    position: relative;
    height: 45px;
    font-size: 18px;
    outline: none;
    
}
.content .user-input:focus{
    border: 3px dashed grey;

}
.content .user-input::placeholder{
    padding-left: 20px;
    color: rgb(236, 25, 113);
}
.content img{
    margin-left: 20%;
    width: 60%;
    height: 60%;
}

.inputs input:first-child{
    margin-left: 0px;
}

.content .info{
    margin: 20px 0 25px;
}
.info p{
    font-size: 16px;
    margin-bottom: 10px;
}
.content .reset-btn{
    width: 100%;
    cursor: pointer;
    outline: none;
    border: none;
    color: #fff;
    padding: 15px 0;
    background: #f57c12;
    font-size: 18px;
    border-radius: 5px;
    transition: transform 0.3s ease;
}

.content .reset-btn:hover{
    transform: translateY(-10px);
    background: #d0680c;
    border:  2px dashed rgb(0, 0, 0);

}

