body {
    overflow: hidden;
    background: var(--black);
    font-family: var(--CDSB);
    height: 100vh;
}

main {
    margin-top: 150px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.form-container {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    width: 100%;
    max-width: 500px;
    z-index: 6;
}

h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #333;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    color: #555;
}

input[type="text"],
input[type="email"],
input[type="password"] {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 0.5rem;
    box-sizing: border-box;
}

input[type="submit"] {
    background: forestgreen;
    color: white;
    padding: 0.75rem;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    width: 100%;
    font-weight: bold;
    transition: background 0.15s ease-in-out;
}

input[type="submit"]:hover {
    background: var(--vert);
}

.footer-text {
    margin-top: 1rem;
    text-align: center;
    font-size: 0.9rem;
    color: #777;
}

.footer-text a {
    color: var(--vert);;
    text-decoration: none;
}

.footer-text a:hover {
    text-decoration: underline;
}

@keyframes slidein {
    from { transform: translateY(0px); }
    to   { transform: translateY(1000px); }
}

.blurorigin1 {
    position: absolute;
    left:400px;
    filter: blur(150px);
    animation:slidein 5s ease-in-out infinite alternate;
    z-index: 2;
}

.blurorigin3 {
    position: absolute;
    right:800px;
    filter: blur(150px);
    animation:slidein 5s ease-in-out infinite alternate;
    z-index: 2;
}

.blur1 {
    clip-path: polygon(0 36%, 17% 0, 70% 32%, 100% 7%, 100% 97%, 81% 77%, 0 72%);
    background: linear-gradient(#29FF74, #19A54A ,#0A3B1B, #0A3B1B);
    width: 180vw;
    height: 1900px;
    z-index: 2;
    transform: rotate(90deg);
}

.blur2 {
    clip-path: polygon(0 36%, 17% 0, 70% 32%, 100% 7%, 100% 97%, 81% 77%, 0 72%);
    background: linear-gradient(#29FF74, #19A54A ,#0A3B1B, #0A3B1B);
    width: 180vw;
    height: 1900px;
    z-index: 2;
    transform: rotate(-90deg);
}