.content {
    bottom: 94px;
    left: 0;
    position: absolute;
    right: 0;
    top: 50px;
}

.footer {
    background: #232323;
    bottom: 0;
    box-sizing: border-box;
    color: #FFFFFF;
    height: 94px;
    left: 0;
    padding: var(--medium-gutter-size) 0;
    position: absolute;
    right: 0;
}

.footer .footer-inner {
    align-items: center;
    display: flex;
    height: 100%;
    justify-content: space-between;
    margin: 0 auto;
    max-width: var(--max-content-width);
    width: 100%;
}

.footer .footer-inner .powered {
    align-items: center;
    display: flex;
}

.footer .footer-inner .powered .spotify-logo {
    height: 32px;
    margin-left: 16px;
}

.header {
    box-sizing: border-box;
    color: #FFFFFF;
    height: 50px;
    left: 0;
    line-height: 50px;
    padding: var(--small-gutter-size) 0;
    position: absolute;
    right: 0;
}

.header .header-inner {
    align-items: center;
    display: flex;
    height: 100%;
    justify-content: space-between;
    margin: 0 auto;
    max-width: var(--max-content-width);
    width: 100%;
}

.hero {
    color: #FFFFFF;
    display: flex;
    flex-direction: column;
    left: 50%;
    max-width: var(--max-content-width);
    position: absolute;
    text-align: center;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 100%;
}

.hero .spotify-button {
    background: #1DB954;
    background-image: url(/static/icons/spkr/spotify/icon-white.png);
    background-position: 12px center;
    background-repeat: no-repeat;
    background-size: 24px 24px;
    border-radius: 24px;
    box-sizing: border-box;
    color: #FFFFFF;
    display: table;
    font-weight: 600;
    height: 48px;
    line-height: 48px;
    margin: 0 auto;
    padding-left: 48px;
    padding-right: 24px;
    position: relative;
    text-decoration: none;
}

.hero .subtitle {
    font-family: 'ProximaNova', sans-serif;
    font-size: 22px;
    line-height: 22px;
    margin-bottom: var(--large-gutter-size);
}

.hero .title {
    font-size: 64px;
    font-weight: 600;
    line-height: 64px;
    margin-bottom: var(--medium-gutter-size);
}

.hero form .field {
    display: flex;
    margin: 0 auto;
    width: 250px;
}

.hero form .field:not(:last-child) {
    margin-bottom: var(--xsmall-gutter-size);
}

.hero form .field button {
    background: #1DB954;
    background-image: url(/static/icons/spkr/form/submit.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 18px 18px;
    border: none;
    border-bottom-right-radius: 4px;
    border-top-right-radius: 4px;
    cursor: pointer;
    opacity: 0;
    outline: none;
    padding: 0;
    transition: all .25s ease-in-out;
    width: 0;
}

.hero form .field input {
    border: none;
    border-radius: 4px;
    box-sizing: border-box;
    font-family: 'ProximaNova', sans-serif;
    height: 32px;
    line-height: 32px;
    outline: none;
    padding: 0 var(--xsmall-gutter-size);
    width: 100%;
}

.hero form .field input:focus,
.hero form .field input:valid {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
}

.hero form .field input:focus ~ button,
.hero form .field input:valid ~ button {
    opacity: 1;
    transition: width .25s ease-in-out;
    width: 24px;
}

.hero form .field.inactive input {
    background: #C5CBD3;
    border-bottom-right-radius: 4px;
    border-top-right-radius: 4px;
    pointer-events: none;
}

.hero form .field.inactive button {
    width: 0 !important;
}
