*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{

    font-family:'Poppins',sans-serif;

    background:#080808;

    color:white;

}

.login-container{

    min-height:100vh;

    width:100%;
    max-width:520px;

    margin:0 auto;

    display:flex;

    flex-direction:column;

    justify-content:center;

    padding:80px 30px;

}

.logo{

    width:280px;

    max-width:100%;

    display:block;

    margin:0 auto 45px;

}

h1{

    text-align:center;

    font-size:56px;

    font-weight:700;

    color:#FFFFFF;

    margin-bottom:12px;

}

.subtitle{

    text-align:center;

    color:#9CA3AF;

    font-size:20px;

    margin-bottom:55px;

}

label{

    display:block;

    color:#FFFFFF;

    font-size:17px;

    font-weight:600;

    margin-top:22px;

    margin-bottom:10px;

}

input{

    width:100%;

    height:60px;

    background:#111111;

    border:2px solid #2A2A2A;

    border-radius:14px;

    color:white;

    font-size:17px;

    padding:0 20px;

    transition:.25s;

}

input::placeholder{

    color:#6B7280;

}

input:focus{

    outline:none;

    border-color:#D4AF37;

}

input::placeholder{

    color:#9CA3AF;

}

input:focus{

    outline:none;

    border-color:#D4AF37;

    box-shadow:0 0 20px rgba(212,175,55,.2);

}

.login-btn{

    width:100%;

    height:60px;

    margin-top:35px;

    background:#D4AF37;

    color:#111111;

    border:none;

    border-radius:14px;

    font-size:20px;

    font-weight:700;

    cursor:pointer;

    transition:.2s;

}

.login-btn:hover{

    background:#E3BF48;

}

.divider{

    margin:45px 0 25px;

    text-align:center;

    color:#9CA3AF;

    font-size:16px;

}

.signup-buttons{

    display:grid;

    gap:15px;

}

.signup-buttons a{

    display:block;

    width:100%;

    text-align:center;

    text-decoration:none;

    padding:18px;

    border-radius:14px;

    font-size:17px;

    font-weight:600;

    transition:.25s;

}

.artist-btn{

    background:#D4AF37;

    color:#111111;

}

.artist-btn:hover{

    background:#E3BF48;

}

.venue-btn{

    background:transparent;

    border:2px solid #D4AF37;

    color:#D4AF37;

}

.venue-btn:hover{

    background:#D4AF37;

    color:#111111;

}
.eyebrow{

    text-align:center;

    color:#D4AF37;

    letter-spacing:3px;

    font-size:12px;

    font-weight:700;

    margin-bottom:20px;

}