body, h3, button {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: url('Index-background.svg') no-repeat center center fixed;
    background-size: cover;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
    padding: 40px;
    border-radius: 10px; /* Rounded corners for the container */
    max-width: 500px; /* Max width for the container */
    margin: auto; /* Center the container */
}

.logo {
    width: 200px; /* Adjust this value as needed */
    margin-bottom: 30px;
}

h3 {
    color: #0B0A55;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 500px; /* Keeps the text lines at a readable length */
}

button {
    background-color: #0B0A55;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1rem;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 5px; /* Slightly rounded corners for the button */
    transition: all 0.3s ease;
}

button:hover, button:focus {
    background-color: #090853; /* A darker shade for hover state */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Shadow for a 'lifted button' effect */
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    .container {
        padding: 20px;
        border-radius: 0; /* Full width on small screens */
    }
    h3 {
        margin-bottom: 15px;
    }
}

/* Adjustments for very small heights */
@media (max-height: 500px) {
    .container {
        justify-content: flex-start;
        padding-top: 60px;
    }
}

/* Additional styles for terms and conditions page */
.terms-container {
    padding: 20px;
    max-width: 800px; /* Adjust width for terms content */
}

.terms-container h1, .terms-container h2 {
    margin-top: 20px;
    color: #0B0A55;
}

.terms-container p {
    text-align: left; /* Align text to the left for better readability */
    margin-bottom: 20px;
    line-height: 1.6; /* Improve line spacing for readability */
}

li {
    text-align: left;
}