body {
    font-family: Montserrat, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #1b1b1b;
    display: flex;
    justify-content: center;
    align-items: center;
}

.trackName {
    background-color: antiquewhite;
}

.container {
    margin-top: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 80%;
    max-width: 500px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
}

h1 {
    color: #333;
    text-align: center;
}

form, #login-button {
    background: #fff;
    padding: 20px;
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 5px;
}

input[type="text"],
input[type="email"],
input[type="number"],
select {
    margin-bottom: 10px;


    width: 100%;
    border-radius: .75rem;
    border-width: 2px;
    border-color: transparent;
    background-color: rgb(240 240 240 );
    padding: .75rem;
    font-size: 17px;
    color: rgb(21 21 21);
    
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="number"]:focus,
select:focus {
    background-color: #ffffff;
    border: 2px solid #e861a4;
    transition: ease-in-out, background-color .15s ease-in-out;
    outline: none;
}

input[type="text"]:hover:not(:focus),
input[type="email"]:hover:not(:focus),
input[type="number"]:hover:not(:focus),
select:hover:not(:focus) {
    background-color: #dadada;
    transition: ease-in-out, background-color .35s ease-in-out;
}

button {
    font-family: Montserrat, sans-serif;
    font-size: medium;
    font-weight: bold;
    display: block;
    width: 100%;
    padding: 15px;
    background: #e861a4;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 30px;
}

button:hover {
    background: #e34293;
}

#playlist-container {
    background: #fff;
    padding: 20px;
}
#login-button {
    background-color: #1DB954; /* Spotify green */
    color: white;
    border: none;
    border-radius: 30px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    width: auto;
}

#login-button i {
    font-size: 20px; /* Adjust the size of the Spotify icon */
    margin-right: 8px;
}

#login-button:hover {
    background-color: #1ed760; /* Slightly lighter green on hover */
}


