body {
    margin: 0;
    padding: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background-color: #000;
    font-family: 'League Spartan', sans-serif; /* Keep the League Spartan font */
}

header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 10px;
}

.logo-container {
    display: flex;
    align-items: center;
    margin-top: 20px; /* Added top margin for spacing */
    margin-left: 20px; /* Added left margin for spacing */
}

.logo {
    max-width: 80px;
}

.welcome-text {
    color: #fff;
    font-size: 18px;
    margin-top: 10px;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.4; /* Adjusted line height to make it across 2 lines */
}

.container {
    display: flex;
    width: 100%;
    justify-content: center;
    margin: 0;
}

.left-side, .right-side {
    padding: 20px;
}
.steps .step img {
    max-width: 35px;
    max-height: 35px;
    margin-bottom: 10px;
}


.left-side {
    text-align: center;
    margin-right: 10px; /* Adjusted margin for spacing */
}

.right-side {
    text-align: center;
    margin-left: 10px; /* Adjusted margin for spacing */
}

.steps {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 20px;
}

.step {
    text-align: left;
    margin-top: 20px;
    color: #fff;
}

.step img {
    max-width: 100px;
    max-height: 100px;
    margin-bottom: 10px;
}

.card {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    width: 300px;
}

.form {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
}

h2 {
    margin-bottom: 20px;
}

label {
    margin-bottom: 8px;
}

.rounded-input {
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 20px;
}

.rounded-button {
    background-color: #000000;
    color: #ffffff;
    padding: 10px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-size: 16px;
}

.rounded-button:hover {
    background-color: #ddd;
}

.redirect-link {
    margin-top: 10px;
    text-align: center;
    color: #333;
}

.redirect-link a {
    color: #333;
    font-weight: bold;
    text-decoration: none;
}

.redirect-link a:hover {
    text-decoration: underline;
}

footer {
    margin-top: auto; /* Push footer to the bottom */
    padding: 10px;
    background-color: #333;
    color: #fff;
    text-align: center;
}

/* Media Query for Mobile Devices */
@media only screen and (max-width: 600px) {
    .right-side, .left-side {
        margin: 0; /* Remove margin for smaller screens */
    }
}

/* ... your existing styles ... */

.footer {
    background-color: #000;
    color: #fff;
    padding: 10px;
    text-align: center;
    position: fixed;
    bottom: 0;
    width: 100%;
}

/* ... your existing styles ... */


.white-link {
    color: #fff;
}