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

body {
    background: linear-gradient(45deg, black 50%, #ff004f);    
    height: 100vh;
}

section {
    display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
}

.container {
    display: flex;
	justify-content: center;
	align-items: center;
    position: relative;
    color: white;
    width: 400px;
    height: 420px;
    border: 1px solid #ff004f;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    box-shadow: 0 25px 45px rgba(0,0,0,0.1);
}

#signupform {
    height: 450px;
}

.square {
    position: absolute;
    backdrop-filter: blur(5px);
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: animate 5s linear infinite;
    animation-delay: calc(-1s * var(--i));
}

@keyframes animate {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(0);
    }
}

.square:nth-child(1) {
    width: 100px;
    height: 100px;
    left: 450px;
    bottom: 200px;
}

.square:nth-child(2) {
    width: 100px;
    height: 100px;
    right: 550px;
    top: 150px;
}

.square:nth-child(3) {
    width: 150px;
    height: 150px;
    top: 120px;
    left: 430px;
    z-index: 2;
}

.square:nth-child(4) {
    width: 150px;
    height: 150px;
    bottom: 90px;
    right: 550px;
    z-index: 2;
}

.square:nth-child(5) {
    width: 100px;
    height: 100px;
    right: 450px;
}

.form {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 40px;
}

.form h2 {
    margin-bottom: 40px;
}

form .inputBox {
    width: 100%;
    margin-top: 20px;
}

form input {
    width: 100%;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 35px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 15px 20px;
    letter-spacing: 1px;
    color: white;
}

form input::placeholder {
    color: white;
}

input[type="submit"] {
    width: 50%;
    background: white;
    color: black;font-weight: 600;
    transition: 0.5s;
}

input[type="submit"]:hover {
    border: 1px solid #ff004f;
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    cursor: pointer;
}

.homebtn {
    width: 50%;
    font-size: 16px;
    background: white;
    border-radius: 35px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 15px 20px;
    letter-spacing: 1px;
    color: black;
    font-weight: 600;
    text-decoration: none;
    transition: 0.5s;
}

.homebtn:hover {
    border: 1px solid #ff004f;
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.resetpass, .createacc {
    margin-top: 20px;
}

.resetpass a, .createacc a {
    color: white;
    text-decoration: none;
    transition: 0.5s;
}

.resetpass a:hover, .createacc a:hover {
    color: #ff004f;
}

@media only screen and (max-width: 800px) {
    .container {
        width: 380px;
        height: 430px;
    }

    .square {
        display: none;
    }
}