/* General styles */
body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background: #191414; /* Dark background similar to Spotify */
    color: #ffffff; /* White text */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    position: relative;
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* Subtle dark overlay */
    z-index: -1;
}

header {
    text-align: center;
    margin-bottom: 20px;
    z-index: 1;
}

h1 {
    margin: 0;
    font-size: 2.5em; /* Slightly larger for the login page */
    color: #1db954; /* Spotify green */
}

p {
    margin: 10px 0;
    font-size: 1.2em; /* Slightly larger for better readability */
    color: #b3b3b3; /* Lighter text color */
}

.login-button {
    display: inline-block;
    padding: 15px 30px; /* Larger button for prominence */
    margin-top: 20px;
    font-size: 1.2em; /* Larger text for better visibility */
    color: white;
    background-color: #1db954; /* Spotify green */
    border: none;
    border-radius: 5px;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.login-button:hover {
    background-color: #1ed760; /* Slightly lighter green on hover */
}

footer {
    position: absolute;
    bottom: 10px;
    text-align: center;
    font-size: 0.9em;
    color: #b3b3b3; /* Lighter text color */
}

footer a {
    color: #1db954; /* Spotify green */
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover {
    color: #1ed760; /* Slightly lighter green on hover */
}