body {
    font-size: 17px;
    background-color: #020203;
    color: #f5eff6;
    font-family: "Inter Medium", sans-serif;
    text-align: center;
}
.container {
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    padding-right: 10px;
    padding-left: 10px;
}
h1 {
    font-family: "Inter Black", sans-serif;
    font-size: 2rem;
}
h1 span {
    background: linear-gradient(to bottom right, #76059c, #bf2cea);
    background-clip: text;
    color: transparent;
    font-size: 1.2em;
}
h2 {
    font-family: "Inter ExtraBold", sans-serif;
}
@keyframes form {
    from {width: 0;}
    to {width: 100%; box-shadow: 0 0 25px 1px #bf2cea;}
}
#form {
    display: flex;
    margin: 4.5vh auto 4.3vh;
    background-color: #161418;
    min-height: 7vh;

    border: #76059c 3px solid;
    border-radius: 50px; 

    animation-name: form;
    animation-duration: 1s;
    animation-delay: 0s;
    animation-fill-mode: forwards;
    animation-timing-function: ease-in-out;
}
@keyframes form-element {
    from {opacity: 0}
    to {opacity: 1}
}
#email {
    font-family: "Inter Medium", sans-serif;
    background-color: transparent;
    color: #f5eff6;
    font-size: 0.9em;
    text-align: center;
    width: 100%;
    outline: none;
    border: none;
    opacity: 0;
    animation: form-element 0.6s 1s ease-in-out forwards;
}
#submit {
    font-family: "Inter Medium", sans-serif;
    position: relative;
    overflow: hidden;
    text-align: center;
    background-color: #76059c; 
    color: #f5eff6;
    font-size: 0.9em;
    opacity: 0;
    min-width: fit-content;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 50px;
    border: none;
    outline: none;
    cursor: pointer;
    white-space: nowrap;

    animation: form-element 0.6s 1s ease-in-out forwards;
}
#submit::before {
    content: "";
    top: 0;
    left: 0;
    position: absolute;
    display: block;
    width: 70%;
    height: 100%;
    background: linear-gradient(90deg, transparent, #bf2cea, transparent);
    transform: translateX(-100px) skew(-17deg);
    transition: transform 1.0s;
}
#submit:hover::before {
    transform: translateX(100px) skew(-17deg);
}
p {
    line-height: 1.5;
}
.main-text {
    text-align: left;
    margin: auto;
    font-size: 1em;
}
.disclaimer {
    padding: 0 20px 0 20px;
    font-size: 0.6em;
    font-family: "Inter", sans-serif;
}
label {
    visibility: hidden;
}