* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins';
}
html ,  body{
    height: 100%;
    width: 100%;
}

.main-body {
    width: 100%;
    height: 100%;
    display: grid;
    justify-content: center;
    align-items: center;
    background: linear-gradient(90deg, purple, cyan);
    background-size: 400% 400%;
    animation: gradient 4s ease infinite;
}

@keyframes gradient {
	0% {
		background-position: 10% 50%;
        background: linear-gradient(0deg);
	}
	25% {
		background-position: 50% 50%;
        background: linear-gradient(90deg);
    }
	50% {
		background-position: 100% 30%;
        background: linear-gradient(180deg);
    }
	50% {
		background-position: 50% 30%;
        background: linear-gradient(270deg);
    }
	100% {
		background-position: 10% 50%;
        background: linear-gradient(360deg);
	}
}

.form {
    display: flex;
    flex-direction: column;
    background-color: rgba(177, 177, 177, 0.342);
    justify-content: center;
    backdrop-filter: blur(10px);
    border-radius: 10px;
    width: 320px;
    height: 320px;
    gap: 20px;
    padding: 20px;
}
.user-name input, .e-mail input {
    padding: 10px 16px;
    width: 100%;
    height: 40px;
    border-radius: 8px;
    border: 1px solid black;
}
.user-name span, .e-mail span {
    font-size: 15px;
    color: white;
}
button {
    background-color: rgb(52, 185, 141);
    height: 40px;
    outline: none;
    border: none;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    font-weight: 500;
    color: white;
    gap: 5px;
    cursor: pointer;
    transition: 0.2s linear;
    position: relative;
    bottom: -18px;
}
button:hover {
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.521)
}
button img {
    width: 20px;
}

/* My Name */
#dev-name {
    text-align: right;
    color: white;
    font-size: 15px;
    position: absolute;
    right: 0;
    bottom: 0;
}

