html {
    height: 100%;
}

body {
    display: flex;
    height: 100%;
    width: 100%;
    align-items: center;
    justify-content: center;
}

.login {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    border: 2px solid var(--spotify-green);
    border-radius: 12px;
    color: var(--spotify-green);
    text-decoration: none;
    font-family: var(--font);
}

.login svg {
    margin: 0 8px 0 0;
}

.login svg path {
    fill: var(--spotify-green);
}

.login:hover {
    color: var(--background);
    background-color: var(--spotify-green);

    svg path {
        fill: var(--background);
    }
}

.container {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.container h1 {
    margin: 0;
    font-size: 36px;
}

.container p {
    width: 400px;
    margin: 24px 0;
    text-align: center;
}

.container h4 {
    margin: -8px 0 0 0;
    font-weight: normal;
    font-size: 18px;
}

.title {
    display: flex;
    align-items: center;
}

.title img {
    height: 70px;
    width: 70px;
    margin-right: 16px;
}

.title div {
    display: flex;
    align-items: center;
    flex-direction: column;
}

footer {
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 0;
}

footer a {
    color: var(--text);
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

.vertical-separator {
    height: 16px;
    width: 1px;
    background-color: var(--text-2);
    margin: 0 16px;
}

.error-field {
    display: flex;
    position: fixed;
    height: 100%;
    width: 100%;
    z-index: 99;
    background-color: rgba(0, 0, 0, 0.7);
    align-items: center;
    justify-content: center;
}

.error {
    background-color: var(--gray);
    border-radius: 8px;
}

.error .name {
    padding: 4px 12px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    background-color: #ed4245;
}

.error .text {
    padding: 4px 12px;
    width: 300px;
    min-height: 60px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.error .text span {
    margin: 8px 0;
}

.error .text a {
    color: var(--main);
    letter-spacing: -.5px;
    text-decoration: none;
}

@keyframes fly {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@media (max-width: 825px) {
    footer {
        flex-direction: column;
        padding: 0 30px;
    }

    .vertical-separator {
        display: none;
    }

    footer p {
        margin: 0 0 4px;
        text-align: center;
    }
}

@media (max-width: 450px) {
    .container p {
        width: 300px;
    }
}