@font-face {
    font-family: Inter;
    src: url('/assets/admin/font/inter.ttf');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
    scroll-behavior: smooth;
    font-family: 'Inter' !important;
}

p {
    -webkit-user-select: none;
    /* Safari */
    -ms-user-select: none;
    /* IE 10 and IE 11 */
    user-select: none;
    /* Standard syntax */
}

hr {
    margin: 10px auto;
    size: 11px;
    border: none;
    border-top: 1px solid #ffffff40;
    width: 100%;
    box-shadow: 0 0 4px 0px rgb(0 0 0 / 31%);
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    transition: background-color 9999999s ease-in-out 0s;
    -webkit-text-fill-color: #424242 !important;
}

input:focus::-webkit-input-placeholder {
    color: transparent;
}

input::placeholder {
    color: #ffffff54;
    font-size: 18px;
}

body {
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 390px;
    background-position: left;
    overflow: hidden;
    background-color: rgb(26, 26, 26);
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: column;
    height: 100vh;
}

.display-none {
    display: none !important;
}

.rotate {
    animation: rotation 1s infinite linear;
}

@keyframes rotation {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.loading {
    font-size: 40px;
    color: #ffffff8c !important;
}

.container-login {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    width: 398px;
    max-width: 95%;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: rgb(74 74 74 / 40%);
    border-radius: 0;
    box-shadow: 0 0 4px 1px rgb(0 0 0 / 31%);
    backdrop-filter: blur(100px);
    -webkit-backdrop-filter: blur(5px);
    /* border-left: 1px solid rgba(255, 255, 255, 0.3); */
}

.container-login form {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.input-content {
    /* padding: 4px; */
    height: 45px;
    align-items: center;
    display: flex;
    justify-content: space-between;
    background: rgb(219 219 219 / 32%);
    border-radius: 6px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    /* border: 1px solid rgba(255, 255, 255, 0.3); */
    margin-bottom: 15px;
    overflow: hidden;
}

.input-content .icon {
    max-width: 50px;
    width: 100%;
    color: #ffffffe8;
    /* text-shadow: 0 0 3px #28282885; */
    background: #ffffff4d;
    display: flex;
    height: 100%;
    justify-content: center;
    font-size: 24px;
    padding: 0px 20px;
    align-items: center;
}

.input-text {
    max-width: calc(100% - 30px);
    width: 100%;
    border-radius: 0px 6px 6px 0px;
    font-size: 18px;
    border: none;
    padding: 0px 6px 0px 6px;
    color: #d9d9d9;
    background: none;
    height: 45px;
}

.input-submit {
    cursor: pointer;
    transition: 0.2s;
    height: 50px;
    text-transform: uppercase;
    color: #ffffff7d;
    width: 100%;
    font-size: 20px;
    background: rgb(219 219 219 / 32%);
    border-radius: 6px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: none;
    font-weight: bold;
    /* margin-top: 15px; */
}

.input-submit:hover {
    color: #ffffffe4;
    background: #e4e4e47f;
}

.developed {
    color: #dddddda6;
    font-size: 13px;
    text-shadow: 0 0 11px white;
    text-align: center;
    margin-top: 9px;
    width: 100%;
}

.developed a {
    color: #dddddda6;
    text-decoration: none;
}

.container-logo {
    width: 100%;
    display: flex;
    justify-content: center;
    /* background: #ffffff63; */
    border-radius: 6px;
    align-items: center;
    min-height: 120px;
}

.logo {
    max-width: 280px;
    max-height: 130px;
    margin: auto;
    object-fit: cover;
    border-radius: 6px;
    padding: 8px;
}

.error {
    color: rgb(255 255 255);
    width: 100%;
    margin-bottom: 10px;
    justify-content: center;
    text-align: center;
    background: #00000054;
    border-radius: 6px;
    display: flex;
    font-size: 16px;
    padding: 8px;
    /* border: 1px solid rgb(155 59 59 / 44%); */
}

@media(max-width:800px) {
    .container-login {
        height: min-content;
        width: calc(100% - 24px);
        max-width: unset;
        left: 0;
        right: 0;
        border-radius: 8px;
        box-shadow: 0 0 4px 1px rgb(0 0 0 / 31%);
    }

    .developed {
        text-align: center;
    }
}