body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f5f5f5;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    flex-direction: column;
}

.container {
    background-color: #fff;
    border: 2px solid #ccc;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    width: 100%;
    text-align: center;
}

h1 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #6b705c;
}

h2 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #6b705c;
}

p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #333;
}

button {
    padding: 10px;
    background-color: #6b705c;
    border: none;
    color: white;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #a5a58d;
}

.download-info {
    margin-bottom: 20px;
}

.thank-you {
    margin-top: 20px;
    font-size: 18px;
    color: #d4a373;
}

input, textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

textarea {
    resize: vertical;
}

input.small-input, textarea.small-input {
    width: 50%;
    padding: 5px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

input.token-input {
    width: 50%;
    padding: 5px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.link-container a {
    color: #6b705c;
    text-decoration: none;
}

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