* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

#container {
    /* padding-top:40rem;
    padding-left: 98rem; */
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url('./1233.jpg');
    /* background-color: rgb(52, 52, 52); */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

#wrapper {
    padding: 20px;
    background-color: #0e0e0eba;
    border-radius: 5px;
    min-width: 300px;
    box-shadow: rgb(0 0 0 / 84%) 0px 54px 55px, rgb(0 0 0 / 12%) 0px -12px 30px, rgb(0 0 0 / 12%) 0px 4px 6px, rgb(0 0 0 / 17%) 0px 12px 13px, rgb(0 0 0 / 9%) 0px -3px 5px;
}

form {
    display: flex;
    flex-direction: column;
    font-size: 22px;
    height: 100%;
    width: 100%;
    gap: 5px;
}

form input {
    padding: 10px;
}

button {
    background-color: #000000;
    border: none;
    border-radius: 5px;
    padding: 10px;
    width: 100%;
    font-weight: bold;
    color: #fff;
}

i {
    color: #fff;
}

.input-item {
    display: flex;
    justify-content: center;
    gap: 5px;
}

.input-item * {
    border-radius: 5px;
}

.input-item input {
    width: 100%;
}

#DivAccount_LoginButton:hover {
    cursor: pointer;
    background-color: #000000;
}

.icon-box {
    padding: 10px;
    background-color: #000000;
    text-align: center;
    width: 50px;
}

.login-form-title {
    color: #fff;
    font-weight: bold;
    font-size: 25px;
    text-align: center;
    padding-bottom: 15px;
}

@media (max-width:768px) {
    #container {
        /* background-position: -580px; */
    }
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-error-message {
    text-align: center;
    color: #189670;
    font-weight: bold;
    background: #fff;
    border-radius: 5px;
    margin-bottom: 5px;
    font-size: 18px;
}

.lds-dual-ring {
    display: inline-block;
    width: 80px;
    height: 80px;
}

.lds-dual-ring:after {
    content: " ";
    display: block;
    width: 55px;
    height: 55px;
    margin: 8px;
    border-radius: 50%;
    border: 6px solid #000;
    border-color: #c8102e transparent #fff transparent;
    animation: lds-dual-ring 1.2s linear infinite;
}

@keyframes lds-dual-ring {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.hide {
    display: none!important;
}