html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video,
input {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.login-content {
    position: relative;
    width: 100%;
    height: 100vh;
}

.main-image {
    position: fixed;
    width: 100%;
    height: 100vh;
    object-fit: cover;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}
.layer-blur{
    position: fixed;
    top: 0;
    width: 100%;
    height: 100vh;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(4px);
    bottom: 0;
    left: 0;
    right: 0px;
}

.login-container {
    position: absolute;
    right: 14%;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    max-width: 605px;
    min-height: 700px; 
    height: 80vh;
    background-color: rgb(255 255 255); 
    border-radius: 12px;
    border: solid #ccc 2px;
    padding: 40px;
}

.login-container.register {
    left: 14%;
}

.logo {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.logo figure {
    width: 290px;
    height: 170px;
}

.input-grouper {
    margin: 20px 0;
}

label {
    margin-bottom: 10px;
    display: block;
    color: rgb(0, 0, 0);
    font-weight: 400;
    font-size: 18px;
    margin-left: 10px;
}

span{
    color: red;
}

input,
button,
.btn {
    width: 100%;
    height: 50px;
    padding: 0 16px;
    color: black;
    border-radius: 10px;
    font-size: 20px;
    border: solid 1px #ccc;
    background: #ffffff00;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

button {
    cursor: pointer;
    transition: 0.2s;
}

button:hover {
    background-color: white;
    color: black;
}
#btnLogin:hover{
    background-color: #00aef0;
    color: white;
}
.forget-password {
    text-align: center;
    font-size: 20px;
    color: #000;
}

.forget-password {
    color: blue;
}

hr {
    margin: 20px 0
}

.forget-password p {
    color: rgb(0, 0, 0);
    margin-bottom: 26px;
}
.forget-password p a {
    color: rgb(0, 0, 0);
}
.forget-password p a:hover {
    color: rgb(156, 156, 255);
}

a {
    text-decoration: none;
    color: white;
    transition: 0.2s;
}

.forget-password a:hover {
    color: rgb(156, 156, 255);
}


.btn-content {
    display: flex;
    gap: 30px;
    align-items: center;
}

a.btn:hover {
    color: black;
    background-color: white;
}

.mt-3 {
    margin-top: 30px;
}


.btn-store{
    background-color: #264e72 !important;
    color: white !important;
}
.btn-store:hover{
    background-color: white !important;
    color: black !important;
}

/* HTML: <div class="loader"></div> */
.loader {
    display: none;
    width: 30px;
    padding: 8px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: #25b09b;
    --_m:
        conic-gradient(#0000 10%, #000),
        linear-gradient(#000 0 0) content-box;
    -webkit-mask: var(--_m);
    mask: var(--_m);
    -webkit-mask-composite: source-out;
    mask-composite: subtract;
    animation: l3 1s infinite linear;
}

.powered{
    position: absolute;
    bottom: 12px; 
    right: 20px;
    color: #949494;
}
.powered a{
    color: #949494;
}
.powered a:hover{
    color: blue;
}
.powered span{
    color: #949494;

}

.show-pass-content{
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.show-pass-content label{
    margin: 0;
}

.show-pass-content input{
    height: 16px;
    width: 16px;
    margin-right: 10px;
}


@keyframes l3 {
    to {
        transform: rotate(1turn)
    }
}

.loader.show {
    display: block;
}

.user-data {
    padding-top: 0 !important;
}

@media (max-width: 800px) {
    .login-content{
        width: 100vw;
        height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .logo figure {
        width: 320px;
        height: 140px;
    }

    .login-container{
        width: 90%; 
        min-height: 650px;
        height: 70vh;
        padding: 40px 30px;
        right: initial; 
    }

    .input-grouper {
        margin-bottom: 14px;
    }

    input, button, .btn{
        height: 40px; 
    }

    .forget-password{ 
    }

    label{  
        margin: 4px;
    }

    .register{
        right: initial;
        top: initial;
        bottom: initial;
        left: initial !important;
    }
}