body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #212121; /* Set background color to black */
    color: #fff; /* Set text color to white */
}

.wrapper {
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Align content at the top */
    align-items: center;
    padding: 20px;
}

.container {
    max-width: 560px;
    width: 100%;
	background-color: #000;
    border-radius: 10px;
}

.title-container {
    text-align: center;
    margin-bottom: 10px;
}

/* Style for the top bar */
.top-bar {
    border: none; /* Remove default border */
    height: 1px; /* Set the height of the divider */
    width: 500px; /* Set width of divider to match container */
    height: 1px; /* Adjust the thickness of the line */
    background-color: #fff; /* Color of the divider line */
    margin: 23px 23px; /* Add spacing above and below the divider */	
	margin-top: -10px;

}

/* Style for the top and bottom dividers */
.divider {
    border: none; /* Remove default border */
    height: 1px; /* Set the height of the divider */
    width: 500px; /* Set width of divider to match container */
    height: 1px; /* Adjust the thickness of the line */
    background-color: #fff; /* Color of the divider line */
    margin: 23px 23px; /* Add spacing above and below the divider */	
}

.content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px; /* Add spacing between content and footer */
}

.sidebar {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    align-items: center;
    background-color: #000;
    padding-left: 40px;
	margin-bottom: -10px;
}

.button {
    padding: 12px;
    margin-bottom: 10px;
    border: none;
    background-color: #06b5a3;
    color: #fff;
	#font-weight: bold;
	font-family: 'Roboto', sans-serif;
    font-size: 18px;
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.8);
    cursor: pointer;
    border-radius: 5px;
	width: 250px;
	text-decoration: none;
}

.main-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    max-width: 180px; /* Adjust the width as needed */
    height: auto;
    margin-right: 40px; /* Add spacing between logo and buttons */
	margin-top: -10px;	    
}

.footer {
    text-align: center;
    padding: 0px;
    color: #fff;
    font-size: 14px;
    width: 100%; /* Ensure footer spans full width of container */
	margin-top: -10px;	    
	margin-bottom: 15px;
}