body {
    background-color: #0E0F30;
    color: #fff;
    background-image: url('../images/wave.png');
    background-size: cover;
    font-family: 'Montserrat', sans-serif;
}

@media (min-width: 1200px) {
    .container {
        max-width: 1000px;
    }
}

#content {
    /* Allow #content to take up the remaining vertical space and center its content */
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Center vertically */
    margin-top: 20px;
}

.container {
    display: flex;
    flex-direction: column;
    height: 100vh; /* Full viewport height */
}

.container > div {
    margin-top: 40px;
}

.container > .row:first-child {
    /* Ensure the logo row only takes as much space as it needs */
    flex: 0 0 auto;
}

#content > div {
    display: flex;
    flex-basis: auto;
    flex-direction: column;
}

.text-title {
    font-weight: 700;
    font-size: 52px;
    text-transform: uppercase;
}

.highlight {
    color: #F7931A;
}

.highlight-bg {
    background-color: #F7931A;
}

#rows .row {
    margin: 25px 0;
}

.rounded-btn {
    border-radius: 25px;
    padding: 0 30px;
    height: 50px;
    /*display: inline-block;*/
    line-height: 50px;

    display: inline-flex;
    align-items: center; /* Center items vertically */
    justify-content: center; /* Optional: Center items horizontally */
    
    font-weight: 500;
    cursor: pointer;
}

.rounded-btn img {
    margin-left: 10px;
}

input {
    background-color: #090A23;
    color: white;
    outline: none;
    border-left: 1px dashed white; /* Dashed border on the left */
    border-top: 1px dashed white;  /* Dashed border on the top */
    border-bottom: 1px dashed white; /* Dashed border on the bottom */
    border-right: none; /* No border on the right side */
    border-radius: 25px 0 0 25px; /* Rounded corners on the left, flat on the right */
    padding: 10px 20px;
    width: 320px;
    height: 50px;
}

input:focus {
    border-color: lightgray; /* Optional: lighter dashed outline when focused */
}

.input-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.input-accessory {
    background-color: #192549;
    border-radius: 0 25px 25px 0; /* Rounded corners on the right, flat on the left */
    padding: 13px 20px;
    height: 50px;
    display: inline-block;
    margin: 0;
}

.logo-wrapper {
    position: relative;
    display: inline-block; /* Ensures the container doesn't occupy extra space */
}

.logo-wrapper img {
    display: block; /* Ensures the image itself stays in the flow */
    position: relative; /* Keeps the image positioned normally */
    z-index: 1; /* Ensures the image is above the gradient */
}

.logo-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    transform: translate(-50%, -60%); /* Centers the gradient */
    width: 492px;
    height: 492px;
    border-radius: 50%; /* Makes the gradient circular */
    background: linear-gradient(0deg, rgba(0, 62, 156, 0.79), rgba(132, 77, 205, 0.79));
    filter: blur(500px); /* Adds blur effect */
    z-index: 0; /* Ensures the gradient is below the image */
    pointer-events: none; /* Prevents interaction with the gradient */
}