/* === GLOBAL === */

*{
    box-sizing: border-box;
    font-family: 'Manrope', sans-serif;
    margin: 0;
    padding: 0;
}

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

/* === CONTAINERS === */

.container{
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
}

/* === BACKGROUND === */

.background-header{
    position: fixed;
    inset: 0;
    background: linear-gradient(180deg, #2b2b2b 0%, #000000 100%);
    z-index: -1;
}

/* === LAYOUT PRINCIPAL === */

.auth-page{
    max-width: 735px;
    width: 100%;
    margin: 32px auto;
    padding: 40px 24px 64px;
    border-radius: 8px;
    background-color: rgb(18, 18, 18);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 80px;
}

/* === CABEÇALHO === */

.auth-header{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

.spotify-logo{
    width: 40px;
    height: auto;
}

header h1{
    color: white;
    font-weight: 900;
}

/* === LOGIN SOCIAL === */

.social-icon{
    width: 22px;
    height: 22px;
}

.social-login{
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 60%;
    
}

/* === BOTÕES === */

.btn{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 0.9375rem;
    font-weight: 900;
    min-height: 48px;
    height: auto;
    padding: 10px 24px;
    border-radius: 999px;
    cursor: pointer;
    border: none;
    width: 100%;
    position: relative;
}

.btn span{
    flex: 1;
    text-align: center;
}

.btn-social{
    margin: 0 auto;
    background-color: transparent;
    color: white;
    border: 1px solid #727272;
    width: 100%;
}

.btn-social:hover {
    border-color: #b3b3b3;
  }

.btn-continue{
    background-color: #1ed760;
    color: black;
    width: 100%;
    transition: background-color 0.2s;
    margin-top: 18px;
}

.btn-continue:hover{
    background-color: #1fdf64;
    transform: scale(1.03);
}

/* === FORMULÁRIO === */

.divider{
    width: 80%;
    height: 1px;
    background-color: #272727;
    border: none;
    margin: 24px 0;
}

.login-form{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.login-label{
    color: white;
    font-size: 0.8125rem;
    font-weight: 700;
    display: flex;
    justify-content: flex-start;
}

.login-input{
    padding: 14px;
    background-color: transparent;
    width: 100%;
    height: 50px;
    border: 1px solid #727272;
    border-radius: 5px;
}

.login-input:hover{
    border-color: #b3b3b3;
}

.login-input::placeholder {
    font-size: 0.875rem;
    color: #cfcfcf;
    opacity: 1;
}

/* === RODAPÉ DO FORMULÁRIO === */

.auth-footer{
    margin-top: 35px;
    color: #a7a7a7;
    font-size: 0.9375rem;
}

.auth-footer .link{
    color: #ffffff;
    font-weight: 700;
}

.auth-footer .link:hover{
    color: #1fdf64;
    font-weight: 700;
}

/* === FOOTER GERAL === */

footer{
    width: 100%;
    padding: 30px;
    background-color: rgb(18, 18, 18);
    margin-top: auto;
}

.footer-text{
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b3b3b3;
    font-size: 0.75rem;
}

.link{
    color: #b3b3b3;
}