body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: black;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100vh;
}

header {
    background: black;
    color: #93F457;
    text-align: left;
    padding: 10px 20px;
}

.header-text {
    text-align: center;
    font-family: Montserrat;
    font-size: 24px;
    font-weight: 800;
}

main {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    height: 70vh; /* Set a fixed height for the main section */
}

.left-side {
    padding-left: 30px;
    width: 50%;
    text-align: left;
}

.right-side {
    padding-right: 30px;
    width: 40%;
    overflow-y: auto; /* Make only the right-side content scrollable */
}

h1 {
    margin: 0;
    font-family: "Goldman", sans-serif;
    font-style: normal;
    font-size: 72px;
    color: #ffffff;
    line-height: 70px;
}

.tagline {
    margin: 0;
    font-family: "Goldman", sans-serif;
    font-size: 37px;
    color: #93F457;
}

p {
    font-size: 22px;
    color: #A1A1A1;
    margin: 0;
    padding-top: 10px;
}

img {
    margin-left: 25%;
    width: 30%;
    max-width: 400px;
    margin-top: 20px;
}

form-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    overflow-y: auto; /* Make the form container scrollable */
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

label {
    font-size: 18px;
    color: #A1A1A1;
}

input,
select {
    color: #A1A1A1;
    padding: 10px;
    font-size: 16px;
    border-radius: 6.903px;
    background: #1D1D1D;
    box-shadow: 0px 3.207px 40.89px 0px rgba(176, 176, 176, 0.05);
}

.radio-group {
    display: inline-flex;
    flex-direction: row;
    gap: 15px;
    align-items: center;
}

.radio-group input {
    display: none;
}

.radio-group label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    color: #A1A1A1;
}

.radio-group label:before {
    content: '';
    width: 15px;
    height: 15px;
    margin-right: 5px; /* Adjust the margin as needed */
    border: 1px solid #A1A1A1;
    border-radius: 50%;
    background-color: #1D1D1D;
}

.radio-group input:checked + label:before {
    background-color: #93F457;
    border-color: #93F457;
}

button {
    background: #93F457;
    color: #3A3A3A;
    padding: 12px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

button:hover {
    background: #6FA43E;
}

footer {
    position: relative;
}


.bottom-left-artifact {
    position: absolute;
    width: 200px;
    height: 120px;
    border-radius: 50%;
}

.bottom-right-artifact {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
}

.bottom-left-artifact {
    bottom: -50px;
    left: -50px;
}

.bottom-right-artifact {
    bottom: -50px;
    right: -120px;
}

.top-right-element {
    width: 847px;
    height: 269px;
    flex-shrink: 0;
    position: fixed;
    top: -173px;
    right: -600px;
    border-radius: 74.993px;
    background: radial-gradient(50% 50% at 50% 50%, #C0F497 0%, rgba(192, 244, 151, 0.00) 100%);
    z-index: 999; /* Adjust as needed, to ensure it appears above other elements */
}

.spacer {
    flex-grow: 1;
    height: 20px;
}

.disclaimer {
    text-align: end;
    font-size: 12px;
    color: #A1A1A1;
}

.success-gif{
    width: 70% !important;
    max-width: 400px;
}

/* Add media query for screens with a maximum width of 768px (adjust as needed) */
@media (max-width: 768px) {
    .header-text {
        font-size: 18px;
        text-align: center;
    }

    .tagline {
        font-size: 24px;
    }

    h1 {
        font-size: 40px;
        line-height: 40px;
    }

    p {
        font-size: 16px;
    }

    img {
        display: block;
        margin-left: auto;
        margin-right: auto;
        width: 30%;
        max-width: 400px;
        margin-top: 20px;
        margin-bottom: 20px;
    }
    main {
        display: flex;
        flex-direction: column;
        padding: 20px;
    }
    
    body {
        overflow: visible;
    }
    .left-side,
    .right-side {
        width: 100%; /* Full width on smaller screens */
    }

    .left-side {
        margin-top: -60px;
        padding-left: 0px;
        margin-left: 0px;
        order: -1; /* Move left-side up */
        margin-bottom: 20px; /* Add margin for separation */
    }

    .right-side {
        order: 1; /* Move right-side down */
        overflow: visible;
        padding-right: 0px;
        margin-right: 0px;
    }

    .bottom-left-artifact,
    .bottom-right-artifact,
    .top-right-element {
        display: none;
    }
}

.message {
    display: flex;
    align-items: center; /* This will vertically align the items in the center */
    gap: 10px; /* This will add some space between the text and the gif */
}

.message h2 {
    font: Montserrat;
    margin: 0;
    font-size: 24px;
    color: #FFF;
    padding-bottom: 10px;
}

.register-gif {
    rotate: 215deg;
    width: 50px; /* Adjust as needed */
    height: auto; /* This will maintain the aspect ratio of the gif */
    margin: auto;
    transform: scaleX(-1);
}