*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  background: #eeb415;
}

body {
  display: flex;
  justify-content: center;
  align-items: stretch;
  min-height: 100vh;
}

.app-frame {
  width: 100%;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.screen {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 71px 0;
  min-height: 100vh;
  width: 100%;
}

.screen--inicio {
  background: linear-gradient(to bottom, #eeb415 0%, #eeb415 66.346%, #9e7d24 100%);
  justify-content: center;
}

.screen--form {
  background: linear-gradient(to bottom, #eeb415 0%, #eeb415 59.615%, #9e7d24 100%);
}

.screen--cancion {
  background: linear-gradient(to bottom, #eeb415 14.904%, #9e7d24 90.385%);
  padding: 52px 0;
  gap: 29px;
}

.header {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.header__link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.header__link:focus-visible {
  outline: 2px solid #163fb4;
  outline-offset: 4px;
  border-radius: 8px;
}

.header__logo {
  width: 406px;
  max-width: min(94%, 406px);
  height: auto;
  filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.3));
}

.header__logo--sm {
  width: 326px;
  max-width: min(76%, 326px);
}

.header__logo--xs {
  width: 246px;
  max-width: min(60%, 246px);
}

.inicio__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
}

.inicio__title {
  width: 330px;
  max-width: 90%;
  margin: 0;
  font-weight: 800;
  font-size: 24px;
  line-height: 99.79%;
  color: #163fb4;
  text-align: center;
}

.btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 330px;
  max-width: 90%;
  padding: 12px;
  background: #325dd2;
  color: #ffffff;
  border: none;
  border-radius: 5px;
  font-family: inherit;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.18px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s ease;
}

.btn-primary:hover {
  background: #2a4fb5;
}

.btn-primary--block {
  width: 100%;
  max-width: 100%;
}

.btn-primary__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.form-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  width: 370px;
  max-width: 92%;
  padding: 40px;
  background: rgba(63, 50, 8, 0.53);
  border-radius: 6px;
}

.form-wrapper__heading {
  margin: 0;
  width: 100%;
  font-weight: 600;
  font-size: 30px;
  line-height: 1;
  letter-spacing: -0.6px;
  color: #ffffff;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  width: 100%;
}

.field__label {
  margin: 0;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: -0.16px;
  color: #ffffff;
}

.field__input {
  width: 100%;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  color: #ffffff;
  font-family: inherit;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: -0.15px;
  outline: none;
  transition: border-color 0.15s ease;
}

.field__input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.field__input:focus {
  border-color: rgba(255, 255, 255, 0.5);
}

.cancion__art-wrapper {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
  height: 306px;
  overflow: hidden;
}

.cancion__art {
  width: 320px;
  height: 397px;
  max-width: min(80%, 320px);
  object-fit: cover;
}

.player {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 302px;
  max-width: 85%;
  padding: 20px 0;
  background: rgba(63, 50, 8, 0.53);
  border-radius: 6px;
}

.player__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 31px;
  width: 100%;
}

.player__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  color: #ffffff;
}

.player__btn--play {
  width: 85px;
  height: 85px;
  background: #ffffff;
  color: #325dd2;
  border-radius: 50%;
}

.player__info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
  color: #ffffff;
  line-height: 1.4;
}

.player__title {
  margin: 0;
  font-weight: 900;
  font-size: 25px;
}

.player__artist {
  margin: 0;
  font-weight: 500;
  font-size: 20px;
}
