body {
    margin: 0;
    padding: 0;
    display: flex;
    height: 100vh;
    font-family: 'Playfair Display', serif;
    background: radial-gradient(circle, #2C3954, #112550, #080e1b);

}

main {
    align-items: center;
    justify-content: center;
    display: flex;
    position: relative;
    width: 100vw;
}

fieldset {
    border: 10px solid transparent;
    height: 800px;
    width: 900px;
    display: flex;
    position: relative;
    background-color: wheat;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    z-index: 2;
    

}


fieldset::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: inherit;
    background: linear-gradient(90deg, purple, royalblue, cyan, black);
    background-size: 300% 300%; 
    animation: moveBorder 10s linear infinite;
    animation-direction: alternate;
    filter: brightness(0.5);
    z-index: -1; 
}

@keyframes moveBorder {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}


.description {
    position: absolute;
    width: 500px;
    height: 350px;
    background: radial-gradient(#00000036, #00000073, #0000009d);
    border-radius: 5px;
    border: none;
    text-align: left;
    vertical-align: top;
    color: aliceblue;
    transform: translate(-50%, 50%);
    top: 24%;
    left: 50%;
    

}


.required-info {
    color: aliceblue;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 25%;
    top: 35%;

    


}
.contact-method {
    color: aliceblue;
}

.note {
    color: aliceblue;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 88%;
    left: 25%;
    font-size: small;
}




.email-field {
    width: 250px;
    height: 30px;
    border: none;
    border-radius: 5px;


}

.discord-user {
    margin-top: 5px;
    width: 250px;
    height: 30px;
    border: none;
    border-radius: 5px;

}


.username {
    width: 250px;
    height: 30px;
    margin-top: 10px;
    border: none;
    border-radius: 5px;
}


.package-information {
    position: absolute;
    display: flex;
    color: aliceblue;
    top: 3%;
    left: 75%;
    font-size: 1.5rem;
}




.submit-button {
    position: absolute;
    top: 93%;
    
    background-color: aliceblue;
    border: black;
    border-radius: 5px;
    width: 250px;
    height: 35px;

    font-family: 'Playfair Display', serif;
    font-size: 20px;
    padding: 5px;
    cursor: pointer;
    margin-bottom: 5px;
    margin-top: 10px;





}










.label-discord{
    color: aliceblue;
}

.label-email {
    color: aliceblue;
}
.create-request {
    color: aliceblue;
}





@media (max-width: 768px) {
    body {
        overflow-x: hidden;
        overflow-y: hidden;
        height: 100vh;
        width: 100vw;
        background-color: #080e1b;
    }


    fieldset {
        left: 1%;
        width: 300px;
        justify-content: center;
        height: 400px;
        
    }

    .description, .required-info, .package-information {
        display: none;

    }

    .submit-button {
        top: 80%;
    }
    .note {
        left: 10%;
        top: 92%;
        
    }


}
