@font-face {
    font-family: "visby";
    src: url("/site/fonts/VisbyRoundCF_Light.woff2") format("woff2"),
        url("/site/fonts/VisbyRoundCF_Light.woff") format("woff");
}

body {
    min-height: 100vh;
    width: 100%;
    margin: 0px;
    padding: 0px;

    font-family: Arial, sans-serif;
    font-family: "visby", Fallback, sans-serif;
    user-select: none;
    font-size: 14px;
    background-color: rgb(38 42 53);
}

[data-login-back] {
    position: relative;
    height: 100%;
    width: 100%;
    color: #fff;
    /*font-family: Verdana, sans-serif;
    font-family: Times New Roman;*/
    overflow: hidden;

    display: flex;
    flex-direction: row;
    justify-content: center;


}

[data-login-panel] {
    background-color: rgba(144, 90, 195, 0.21);
    background-color: rgb(40 58 83);
    /*overflow: hidden;*/

    border-radius: 2mm;
    box-shadow: inset 1mm 1mm 2mm 0mm rgba(0, 0, 0, 0.16);
    box-shadow: 1mm 1mm 2mm 1mm #00000029;

    border: 1px solid rgba(77, 8, 101, 0.07);
    border: 1px solid rgb(77, 8, 101, 35%);

    width: 364px;
    height: 512px;
    margin-top: calc((100vh - 564px)/2);

    height: max-content;
    padding-bottom: 12px;
}


[data-login-panel] input[type="radio"] {
    display: none;
}


[data-login-panel] input[type="radio"]+label {
    padding: 6px;
    width: 26%;
    margin-top: 9px;
    display: inline-block;
    font-size: 18px;
    text-align: center;
}


[data-login-panel] input:checked+label {
    border-bottom: 1px solid orange;
    font-weight: bold;
    text-shadow: 1px 0px 3px #2306fe8a;
}

[data-login-panel] form,
[data-login-panel] [data-signup-form] {
    display: none;
}



[data-login-panel] input[id="login"]:checked~form[data-login-form] {
    display: initial;
}

[data-login-panel] input[id="signup"]:checked~[data-signup-form] {
    display: initial;
}

[data-login-panel] input[id="signup"]:checked~[data-signup-form] form {
    display: initial;
}

[data-login-panel] input[id="reset"]:checked~[data-reset-form] {
    display: initial;
}

[data-login-panel] input[id="reset"]:checked~[data-reset-form] form {
    display: initial;
}



form [data-instruction] {
    margin: 2mm 4mm 2mm 4mm;
    background-color: rgba(144, 90, 195, 0.21);
    background-color: rgb(137 161 169 / 43%);
    padding: 2mm;
    border-radius: 2mm;
    text-align: center;
    box-shadow: inset 1mm 1mm 2mm 0mm rgb(0 0 0 / 16%);
    border: 1px solid rgba(77, 8, 101, 0.07);
}


[data-message] {
    margin: 5mm 4mm 2mm 4mm;
    background-color: rgba(144, 90, 195, 0.21);
    padding: 2mm;
    border-radius: 2mm;
    text-align: center;
    box-shadow: inset 1mm 1mm 2mm 0mm rgb(0 0 0 / 16%);
    border: 1px solid rgba(77, 8, 101, 0.07);
}

[data-message]:empty {
    display: none;
}


form input[type=text],
form input[type=password],
form input[type=email] {
    display: block;
    vertical-align: middle;
    margin: auto;
    margin-top: 0mm;
    margin-bottom: 3mm;
    height: 10mm;
    width: 87%;
    padding-left: 3mm;
    border: none;
    box-shadow: inset 1mm 1mm 2mm 0mm #00000052;
    border-radius: 4px;
    outline: none;
}

form button {
    color: white;
    background-color: #75dd4a;
    background-color: rgba(243, 10, 10, 0.6);
    background-color: #0281b8;
    background-color: #09729f;

    background-image: linear-gradient(289deg, #007ec2, #07b66a);
    padding: 2mm 8mm 2mm 4mm;

    font-size: 5mm;
    border-radius: 6px 0px 0px 6px;
    border-radius: 0px 6px 6px 0px;

    transition: background-image 2s;

    border: none;
    height: 2.2em;
    margin-left: -2px;
    width: 136px;
}

form button:hover {
    background-color: rgba(72, 204, 62, 0.57);
    background-image: linear-gradient(238deg, #007ec2, #00cc74);
}

div[data-is-org] {
    padding: 2mm 8mm 2mm 4mm;
    display: flex;
    align-items: center;

}

div[data-is-org] > label{
    padding-left: 12px;
}


[type="checkbox"] {

    position: relative;
    appearance: none;
    width: 18px;
    height: 18px;
    background-color: #ffffff;
    box-shadow: inset 4px 4px 10px rgba(0, 0, 0, 0.25), 0px 0px 2px 1px rgba(0, 0, 0, 0.25);
    border: 2px solid #ffffff;
    vertical-align: middle;
    cursor: pointer;
    transition: box-shadow 1s;


}

[type="checkbox"]:checked:after {

    display: block;
    position: relative;
    top: 1.1px;
    left: 1.1px;
    width: 12px;
    height: 12px;
    content: "";

    background: radial-gradient(ellipse at 3px 3px,
            #7aff00 20%,
            #6ee600 40%,
            #3d8000 160%);


}