*{
    margin:0;
    transition: 0.1s;
}

button:active
{
    opacity: 0.8;
    transform: scale(0.95);
}

body
{
    margin:0;
    padding:0;
    font-family: 'Inter',sans-serif;
    background-color: #101010; /*#f6f6f6*/
    box-sizing: border-box;
    width:100%;
    height: 100vh;
    -webkit-tap-highlight-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    padding:20px;
}

.box
{
    width: 400px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.boxlogo img
{
    width:50px;
    user-select: none;
    pointer-events: none;
}

.boxtitle
{
    text-align: center;
}

.boxtitle h2
{
    font-size:30px;
    font-family: 'Inter',sans-serif;
    font-weight:600;
    color:#d7d7d7;
}

.boxtitle p
{
    color:grey;
    margin-top:5px;
    font-size:15px;
    font-weight:500;
}

.boxform
{
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 30px;
}

.boxform select, .boxform input
{
    width: 100%;
    box-sizing: border-box;
    border:0px solid rgba(0,0,0,0.2);
    background-color: #1d1d1d;
    border-radius:5px;
    padding:10px;
    font-family: 'Inter',sans-serif;
    font-weight:600;
    font-size:16px;
    outline: transparent;
    margin-bottom: 15px;
    color:#d7d7d7;
}

#companyname
{
    display: none;
}

.boxform button
{
    width: 100%;
    box-sizing: border-box;
    border:0px solid rgba(0,0,0,0.2);
    background-color: rgb(225 101 64);
    border-radius:5px;
    padding:10px;
    font-family: 'Inter',sans-serif;
    font-weight:600;
    font-size:16px;
    outline: transparent;
    margin-bottom: 15px;
    user-select: none;
    cursor: pointer;
}

.boxform button span
{
    font-family: 'Inter',sans-serif;
    font-weight:500;
}

.boxmessage
{
    text-align: center;
}

.boxmessage p
{
    font-family: 'Inter',sans-serif;
    font-weight:500;
    font-size:13px;
    color:grey;
    display: flex;
    align-items: center;
}

.boxmessage p img
{
    width: 13px;
    margin-right: 3px;
    box-sizing: border-box;
    user-select: none;
    pointer-events: none;
}

.boxmessage a
{
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 13px;
    color: grey;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 5px;
}

.boxmessage a span
{
    font-family: 'Inter',sans-serif;
}

.homelink
{
    position: fixed;
    top:0;
    left:0;
    box-sizing: border-box;
    margin: 20px;
}

.homelink a
{
    height: 100%;
    box-sizing: border-box;
    font-family: 'Inter',sans-serif;
    font-weight:600;
    font-size:15px;
    color:white;
    border:0px solid rgba(0,0,0,0.2);
    background-color: transparent;
    padding-right:10px;
    padding-left:10px;
    border-radius:5px;
    user-select: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    text-decoration: none;
    opacity: 0.5;
}

.homelink a img
{
    width:15px;
    box-sizing: border-box;
    user-select: none;
    pointer-events: none;
    margin-right:5px;
    margin-top: -1px;
}

.homelink a:hover
{
    opacity: 0.8;
}