
.button {
    width: 100%;
    height: 40px;
    outline-style: initial;
    border: 1px solid #ccc;
    border-radius: 10px;
    cursor: pointer;
}
#form {
    position: absolute;
    top: 50%;
        border-radius: 20px;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 360px;
    width: 100%;
    background-color: rgba(212, 8, 8, 0.063);
    color: #fff;
    backdrop-filter: blur(5px);

    box-shadow: 0 0 20px rgba(0, 0, 0, 0.25);
}

.form-header {
    padding: 25px;    padding-top: 25px;    padding-bottom: 0;    text-align: center;    font-family: "Montserrat";
}

.form-header img {        width: 80%;    height: 80%;}

.form-body {    padding: 20px;}

.form-menu {    text-align: center;}

.form-menu-btn {    padding: 8px 12px 6px; border-radius: 10px 10px 0 0; background-color: rgba(255, 255, 255, 0.0625);    border: none;    color: #fff;    cursor: pointer;    transition: 0.125s;}

.form-menu-btn.selected {background-color: #fff; color: #4d4d4d; font-weight: bold;}

.form-menu-btn.selected i {color: #0071bb;}

#admin,
#pin {
    background-color: #fff;
    color: #4d4d4d;
    padding: 40px 20px 20px;
    border-radius: 10px;
    text-align: end;
}

.form-login label {
    position: relative;
    display: block;
    width: 100%;
    margin-bottom: 20px;
    padding-left: 40px;
}

.form-login label i,
.form-login label input {
    display: inline-block;
    padding: 5px 10px;
    background-color: #e6e6e6;
    border: 1px solid #e6e6e6;
    font-size: small;
}

.form-login label i {
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 5px 0 0 5px;
    width: 40px;
    padding: 6px 12px;
    font-size: medium;
    text-align: center;
    background-color: #0071bb;
    border-color: #0071bb;
    color: #fff;
}

.form-login label input {
    border-radius: 0 5px 5px 0;
    width: 100%;
    transition: 0.25s;
}

.form-login label input:focus {
    border-color: #0071bb;
}

.form-login #remember-me {
    display: none;
}

.form-login .remember-me {
    cursor: pointer;
    user-select: none;
    width: max-content;
}

.form-login .remember-me::before {
    content: "";
    display: block;
    position: absolute;
    height: 15px;
    width: 15px;
    border-radius: 5px;
    top: 50%;
    left: 11px;
    transform: translateY(-50%);
    border: 2px solid #0071bb;
    transition: 0.25s;
}

#remember-me:checked + .remember-me::before {
    background-color: #0071bb;
    border-color: #fff;
}

#btn-submit {
    padding: 6px 12px;
    background-color: #0071bb;
    color: #fff;
    border-radius: 5px;
    border: 1px solid #0071bb;
    cursor: pointer;
}

#pin {
    display: none;
    text-align: center;
    padding-top: 20px;
    user-select: none;
}

#pin-container {
    margin: 10px auto;
}

#pin-container input[type="radio"] {
    display: none;
}

#pin-container label {
    display: inline-block;
    border: 2px solid #00000022;
    width: 15px;
    height: 15px;
    margin: 0 10px;
    border-radius: 50%;
}

.pin-radio:checked + label {
    background-color: #0071bb;
}

#table-pin {
    width: 100%;
}

#table-pin td {
    padding: 5px 10px;
    text-align: center;
}

#table-pin .btn-pin,
#table-pin .btn-pin-danger,
#table-pin .btn-pin-success {
    display: inline-block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #0071bb;
    color: #fff;
    font-size: larger;
    font-weight: bold;
    border: 1px solid #0071bb;
    cursor: pointer;
}

#table-pin .btn-pin-danger {
    background-color: #ff6161;
    border-color: #ff6161;
}

#table-pin .btn-pin-success {
    background-color: #33cc33;
    border-color: #33cc33;
}

#table-pin tbody tr td :active {
    background-color: #0071bbaa;
    box-shadow: 10 10 10 #00000022;
}

#footer {
    text-align: center;
    width: max-content;
}

#footer #logo {
    width: 100px;
    display: block;
    margin: 10px auto;
}

#footer #supported_by {
    display: block;
    
    color: #ffffff;
    text-decoration: none;
}

#footer #supported_icons {
    margin: 10px auto;
    display: block;
    justify-content: space-around;
}

#footer #supported_icons a {
    display: inline-block;
    margin: 10px auto;
    font-size: x-large;
    color: #fff;
}

@media (max-height: 660px) {
    #form {
        position: unset;
        transform: unset;
        border-radius: 0;
        height: 100vh;
        width: 100%;
        margin: auto;
        margin-top: 0;
    }

    .form-header {
        padding-top: 40px;
    }

    .form-header img {
        position: unset;
        transform: unset;
        width: 100px;
        height: 100px;
    }
}

@media (max-height: 840px) and (max-width: 720px) {
    #form {
        position: unset;
        transform: unset;
        border-radius: 0;
        width: 100%;
        height: unset;
        margin: auto;
        margin-top: 20px;
        box-shadow: unset;
        border-radius: 10px 10px 0 0;
    }

    .form-header {
        padding-top: 40px;
    }

    .form-header img {
        position: unset;
        transform: unset;
        width: 100px;
        height: 100px;
    }

    #footer {
        position: relative;
        display: block;
        bottom: unset;
        right: unset;
        margin: auto;
        padding: 20px;
        width: 100%;
        max-width: 360px;
        background-color: rgba(255, 255, 255, 0.0625);
        backdrop-filter: blur(5px);
        border-radius: 0 0 10px 10px;
    }
}
