@import url('https://fonts.cdnfonts.com/css/sf-pro-display');

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

html
{
    width: 100dvw;
    height: 100dvh;
}

body
{
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.text-field
{
    all: unset;
    display: block;
    width: 80vw;
    font-size: 16px;
    padding: 10px 16px 10px 16px;
    margin-bottom: 5px;
    border-radius: 0.6em;
    background-color: transparent;
    border: 1.5px solid #8a8a8e;
}

.text-field::placeholder
{
    color: #a9a9a9;
}

.text-field:focus
{
    outline: 3px solid #70c3ff;
}

#submit-btn
{
    all: unset;
    display: block;
    width: 80vw;
    font-size: 16px;
    background-color: #007aff;
    color: white;
    text-align: center;
    padding: 10px 16px 10px 16px;
    margin-top: 10px;
    border-radius: 0.6em;
    font-weight: 900;
}

#submit-btn:disabled
{
    opacity: 0.4;
}

#submit-btn:active
{
    background-color: #0051D4;
}

#centered
{
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#developer-info {
    margin-bottom: 10px;
    font-weight: bold;
}

#developer-name {
    all: unset;
    color: #0051D4;
    cursor: pointer;
}

#privacy-notice
{
    width: 90%;
    text-align: center;
    margin-bottom: 15px;
    font-size: 13px;
    color: #919191;
}

#privacy-notice i {
    margin-right: 1px;
}

#branding
{
    margin-bottom: 50px;
    width: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#logo
{
    width: 35px;
    height: 35px;
}

#brand-name
{
    text-decoration: underline;
    text-decoration-style: wavy;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
    color: black;
    margin-left: 5px;
    font-weight: 900;
    font-size: 25px;
}

#remember-checkbox-container
{
    cursor: pointer;
    margin-top: 10px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

#remember-checkbox-container label
{
    cursor: pointer;
    color: #616161;
    margin-left: 7px;
}

#remember-checkbox
{
    cursor: pointer;
    width: 18px;
    height: 18px;
}