@font-face {
  font-family: 'SpotifyMixUI';
  src: url('https://encore.scdn.co/fonts/SpotifyMixUI-Regular-cc3b1de388efa4cbca6c75cebc24585e.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'SpotifyMixUI', sans-serif;
  background: #121212;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.main {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: linear-gradient(135deg, #1f1f1f, #121212);
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 4px 20px #00000080;
  width: 50%;
}

@media (orientation: portrait) {
  .main {
    width: 90%;
  }
}


h1 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 32px;
}

input {
  padding: 12px 16px;
  font-size: 1rem;
  background: #121212;
  color: #ffffff;
  border: 1px solid #7c7c7c;
  border-radius: 8px;
}

input::placeholder {
  color: #b3b3b3;
}

button {
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.2s;
}

.play {
  background-color: #1ed760;
  color: #121212;
  padding: 12px 32px;
}

.play:hover {
  background-color: #3be477;
  transform: scale(1.05);
}

.play:active {
  background-color: #1abc54;
}

.login {
  background-color: transparent;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'SpotifyMixUI', sans-serif;
  font-size: 16px;
  font-weight: 700;
  box-sizing: border-box;
  cursor: pointer;
  border: 1px solid #4d4d4d;
  border-radius: 9999px;
  transition: background-color 0.2s, border-color 0.2s, transform 0.2s;
}

.login:hover {
  background-color: transparent;
  border-color: #ffffff;
  transform: none;
  transition: border-color 0.033s;
}

.logintxt {
  font-weight: 700;
  color: #e6e6e6;
  margin: 0 12px;
}

.spotify-icon {
  background: url('spotify.svg') center/contain no-repeat;
  width: 24px;
  height: 24px;
}
