html, body {
    height: 100%; /* Ensure the body and html elements take up the full height */
    margin: 0; /* Remove any default margins */
    overflow-x: hidden; /* Prevent horizontal scrolling */
}

body {
    font-family: 'Inter', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    background-color: #f4f4f4;
    box-sizing: border-box;
}

.container {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 90%; /* Use relative width to adapt to smaller screens */
    max-width: 300px; /* Limit the maximum width on larger screens */
    word-wrap: break-word; /* Ensure long words break onto the next line */
    word-break: break-word; /* Ensure long words break onto the next line */
}

.logo {
    max-width: 150px;
    margin-bottom: 20px;
}

.company-name {
    font-size: 24px;
    margin-bottom: 20px;
}

.button-container {
    float: right; /* Aligns the button container to the right */
}

.company-tagline {
    font-size: 16px;
    margin-bottom: 20px;
}

.company-tagline2 {
    font-size: 14px;
    margin-bottom: 20px;
    color: #999999;
}

.email-input {
    width: 80%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.join-button {
    padding: 10px 20px;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

.join-button:hover {
    background-color: #0056b3;
}