/* General styling */
body {
    background-color: #1e1e1e; /* Dark background for the entire page */
    color: #f5f5f5; /* Light text color */
    font-family: Arial, sans-serif;
}

/* Center title */
.center-title {
    text-align: center;
    margin-top: 20px;
    font-size: 32px;
    color: #ffffff;
}

/* Notification container styling */
.notification-container {
    text-align: center; /* Center content inside the container */
    margin-top: 20px;
}

/* Notification styling */
.notification {
    display: inline-block; /* Allows the notification to scale to content size */
    padding: 15px 25px; /* Adjust padding to increase width slightly */
    border-radius: 8px; /* Rounded corners */
    font-size: 18px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Add shadow for visual depth */
    border: 2px solid; /* Increase border thickness */
    min-width: 250px; /* Minimum width to ensure it doesn’t get too narrow */
}

/* Error message style */
.notification.error {
    background-color: #f8d7da; /* Light red background */
    color: #721c24; /* Dark red text */
    border-color: #f5c6cb; /* Darker red border */
}

/* Success message style */
.notification.success {
    background-color: #d4edda; /* Light green background */
    color: #155724; /* Dark green text */
    border-color: #c3e6cb; /* Darker green border */
}

/* Login container styling */
.login-container {
    display: flex;
    justify-content: space-around;
    margin: 50px auto;
    max-width: 800px;
}

/* Style for each login section */
.login-section {
    border: 1px solid #444; /* Darker border color */
    border-radius: 10px;
    padding: 20px;
    width: 45%;
    text-align: center;
    background-color: #2c2c2c; /* Dark background for each section */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Darker shadow */
}

/* Input field styling */
.login-section input[type="text"] {
    width: 80%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #666; /* Darker border for input field */
    border-radius: 5px;
    background-color: #1e1e1e; /* Dark background for input field */
    color: #f5f5f5; /* Light text color */
}

/* Button styling */
.btn {
    padding: 10px 20px;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 10px;
    background-color: #7289da;
}

.btn-steam {
    background-color: #171a21; /* Steam-specific dark color */
}

.btn-discord {
    background-color: #7289da; /* Discord-specific color */
}

.btn:disabled {
    background-color: #555;
    cursor: not-allowed;
}
