/*
Audio player #2c2c2e
*/

*{
    margin: 0;
    padding:0;
    transition:0.1s;
    -webkit-tap-highlight-color: transparent;
}

button
{
    cursor:pointer;
}

body
{
    margin:0;
    padding:0;
    font-family: 'Instrument Sans',sans-serif;
    background-color: white;
    padding:0px;
    width:100%;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    scroll-behavior: smooth;
}

.loginbox
{
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    width: 300px;
    padding: 20px;
}

.loginbox img
{
    width: 50px;
    margin: 0 auto;
    margin-top: 40px;
    margin-bottom: 10px;
}

.loginbox h2
{
    text-align: center;
    margin-bottom: 30px;
    font-size:24px;
    font-weight:800;
}

.loginbox label
{
    font-size: 14px;
    font-weight: 600;
    color: black;
    margin-bottom: 5px;
}

.loginbox input
{
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #a9a9a9;
    border-radius: 10px;
    padding: 10px;
    font-size: 20px;
    font-family: 'Instrument Sans';
    font-weight: 500;
    outline: transparent;
    margin-bottom: 15px;
}

.loginbox p
{
    text-align: center;
    color: grey;
    font-size: 13px;
}

.loginbox button
{
    width: 100%;
    box-sizing: border-box;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 10px;
    padding: 10px;
    font-size: 20px;
    font-family: 'Instrument Sans';
    font-weight: 500;
    outline: transparent;
    background-color: #9124e7;
    color: white;
    margin-top: 30px;
}

.loginbox button span
{
    font-size: 18px;
    color: rgba(255,255,255,0.6);
    font-weight: 400;
}

.loginbox button:active
{
    background-color: #8220cd;
}

.loginbox a
{
    margin-top: 15px;
    text-align: center;
    color: grey;
    text-decoration: none;
}

.loginbox a span
{
    text-decoration: underline;
}

.terms
{
    width: 100%;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.terms input
{
    width: auto;
    box-sizing: border-box;
    border: 1px solid #a9a9a9;
    border-radius: 10px;
    padding: 0;
    font-size: 20px;
    font-family: 'Instrument Sans';
    font-weight: 500;
    outline: transparent;
    margin-bottom: 0;
    margin-right: 9px;
}

.terms label
{
    margin-bottom: 0px;
}

.terms label a
{
    margin: 0;
    color: black;
    text-decoration: underline;
}


.successbox
{
    display: none;
    position: absolute;
    z-index: 1;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 300px;
    height: 100%;
    padding: 20px;
    background-color: white;
    box-sizing: border-box;
}

.successbox h2
{
    text-align: center;
    margin-bottom: 30px;
    font-size:24px;
    font-weight:800;
}

.successbox a
{
    text-align: center;
    text-decoration: none;
    box-sizing: border-box;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 10px;
    padding: 10px;
    font-size: 20px;
    font-family: 'Instrument Sans';
    font-weight: 500;
    outline: transparent;
    background-color: #9124e7;
    color: white;
    margin-top: 10px;
}

.successbox a span
{
    font-size: 18px;
    color: rgba(255,255,255,0.6);
    font-weight: 400;
}

.successbox a:active
{
    background-color: #8220cd;
}

.logobox
{
    position: fixed;
    bottom:0;
    width: 100%;
    box-sizing: border-box;
    padding:20px;
    display: flex;
    justify-content: center;
}

.logobox a
{
    text-decoration: none;
}

.logobox img
{
    height:15px;
    box-sizing: border-box;
    user-select: none;
}


@media screen and (max-width: 800px) {

}


