:root {
    --bs-body-font-family: 'Montserrat', Helvetica, sans-serif; /* Custom font stack */
}

h1 {
    font-size: 1.7rem;
    margin: 20px 0;
}

p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.container-fluid {
    text-align: center;
}


.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5em;
    height: 100vh;
    position: relative;
    pointer-events: none;
}

.responsive-width {
    max-width: 83vh;
}

.header {
    max-width: 400px;
}

.header img {
    height: auto; /* Maintains aspect ratio */
    max-width: 80%;
}

.header .text{
    color: white;
}

.header h1 {
    display: inline;
    line-height: 2.7rem;
    color: white;
}

.header span {
    display: block;
}

.header #discover{
    background: -webkit-linear-gradient(90deg, rgba(246,0,254,1) 0%, rgba(201,0,254,1) 29%, rgba(81,66,240,1) 76%, rgba(0,51,222,1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


h1.main  {
    font-size: 2.5rem;
    color: white;
    font-weight: 600;
}

p.main  {
    color: white;
}


.email-form input {
    padding: 10px;
    font-size: .8rem;
    border: none;
    border-radius: 5px;
    margin-right: 10px;
    pointer-events: all;
    appearance: none;
    height: auto;
    outline: none;
    background: rgba(89, 89, 89, 0.6);
    color: rgb(255, 255, 255);
    margin-top: -3px;
    width: 40%;
}

.email-form button {
    padding: 10px 20px;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    color: #fff;
    background: rgb(246,0,254);
    background: linear-gradient(90deg, rgba(246,0,254,1) 0%, rgba(201,0,254,1) 29%, rgba(81,66,240,1) 76%, rgba(0,51,222,1) 100%);
    -webkit-transition: background ease-in-out 800ms;
    -moz-transition: background ease-in-out 800ms;
    -o-transition: background ease-in-out 800ms;
    transition: background ease-in-out 800ms;
    pointer-events: all;
    cursor: pointer;
    margin-top: -2px;
}

.email-form .input {
    text-align: right;
}

.email-form .button {
    text-align: left;
}

.main span{
    width: fit-content;
    margin: 0 auto;
    margin-top: 10px;
    display: block;
    color: white;
    text-shadow: 0px 0px 16px white;
    animation:sent 2.5s linear infinite alternate .2s;
    -webkit-animation:sent 2.5s linear infinite alternate .2s;
    -moz-animation:sent 2.5s linear infinite alternate .2s;
    -o-animation:sent 2.5s linear infinite alternate .2s;
}

@keyframes sent {
    10% {
        color:green;
    }
    40% {
        color:white;
    }
    80% {
        color:green;
    }
    100% {
        color:white;
    }
}

.email-form button:hover {
    background: #0056b3;
}

.beta-info-container {
    align-items: center;
    padding: 10px 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    max-width: 500px;
    pointer-events: all;
    display: flex;
    gap: 2rem;
}

.beta-info-text p {
    margin: 0;
    font-size: 14px;
}

.apply-link {
    color: rgba(246,0,254,1);
    text-decoration: none;
    font-weight: bold;
    text-shadow: 0px 0px 20px rgba(246, 0, 254, 1);
}

.early-beta {
    color: rgba(246,0,254,1);
    font-style: italic;
    text-shadow: 0px 0px 20px rgba(246, 0, 254, 1);
}

.more-details-button {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.more-details-button:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.shape_arrow {
    position: relative;
    width: 100px;
    margin-top: -17%;
    margin-left: 105%;
}
.shape_arrow img {
    max-width: 100%;
}

@media (max-width: 768px) {
    .responsive-width {
        width: 100vw; /* Adjust for smaller screens */
    }
    .header {
        max-width: 100%;
    }
    .header img {
        max-width: 60%;
    }
    .email-form {
        display: inline;
    }
    .email-form input {
        text-align: center;
    }
    .email-form .button {
        text-align: center;
        margin-top: 10px;
    }
}

@media (max-width: 540px) {
    .content{
        gap: 1.5em;
    }
    h1.main {
        font-size: 2rem;
    }
    p.main {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .responsive-width {
        width: 100vw;
    }
    .header img {
        max-width: 60%;
    }
    .email-form {
        display: inline;
    }
    .email-form input {
        text-align: center;
        width: 70%;
        margin: 0 auto;
    }
    .email-form button {
        text-align: center;
        margin-top: 10px;
    }
    .content {
    }
    .beta-info-container {
        display: inline-block;
    }
    .beta-info-container button {
        margin-top: 5px;
    }
    .shape_arrow {
        display: none;
    }
}

@media (max-width: 375px) {
    /* Adjust for very small screens */
    .responsive-width {
        width: 100%;
    }

    .content {
        gap: 2em;
        width: 100%;
        justify-content: center;
    }

    .header img {
        max-width: 60%;
    }

    h1.main {
        font-size: 1.5em;
    }

    p.main {
        font-size: 1rem;
    }

    .email-form {
        display: inline;
    }

    .email-form input {
        text-align: center;
        width: 70%;
        margin: 0 auto;
    }

    .email-form button {
        text-align: center;
        width: 70%;
    }

    .email-form button {
        text-align: center;
        margin-top: 10px;
    }

    .content {
        gap: 1em;
    }

    .beta-info-container {
        display: inline-block;
    }

    .beta-info-container a {
        margin-top: 5px;
    }

    .shape_arrow {
        display: none;
    }
}
