.form h1 {
    text-align: center;font-size: 30px;
    color: rgba(var(--theme), 1);
    font-family: 'noto';
    margin-bottom: 15px;
    font-weight: 900;
    letter-spacing: .5px;
}

body {
    /* background: linear-gradient(to right, #f3f4f9, #ebecf2); */
    background: url();
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'noto';
    position: relative;
}
body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(
        ellipse at center,
        transparent 70%,
        rgba(var(--theme), 0.1) 90%,
        rgba(var(--theme), 0.3) 100%
    );
    z-index: 9;
}
#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    background: var(--body-bg);
    z-index: -1;
}

.login-box {
    position: relative;
    z-index: 1;
}
.flexs {
max-width: 700px;
    height: 750px;
    width: 70%;
    padding: 80px 100px;
    position: relative;
    border-radius: 30%;
    overflow: hidden;
    background: rgba(var(--theme), 0.005);
    backdrop-filter: blur(10px) saturate(100%);
    -webkit-backdrop-filter: blur(10px) saturate(100%);
    mask: radial-gradient(farthest-side, black 70%, transparent 100%);
    -webkit-mask: radial-gradient(farthest-side, black 70%, transparent 100%);
}

.flexs .avatar{
    width: 100px;
    height: 100px;
    border-radius: 100%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--theme),.1);
}
.flexs .avatar svg{
    width: 50px;
    height: 50px;
    color: rgba(var(--theme),1);
    margin: 0;
}

    .form .logo{
        width: 70px;
        margin: auto;
        margin-top: 30px;
    }
.form {
    flex: 1 1 70%;
    margin: auto;
    padding: 20px;
    padding-top: 30px;
    padding-bottom: 60px;
    text-align: center;
    position: relative;
}
.form > div {
    width: 100%;
    margin: auto;
    position: relative;
}
.form input {
    width: 100%;
    margin: 7px auto;
    padding: 12px 0px;
    font-size: 14px;
    border-radius: 50px;
    background: rgba(var(--theme), 0.1);
    border: none;
    font-family: 'noto';
    color: rgba(var(--text), 1);
    position: relative;
    z-index: 2;
    text-align: center;
}
.form_error span {
    display: block;
    width: 100%;
    margin: auto;
    font-size: 14px;
    color: rgba(var(--red), 0.8);
    text-align: left;
}
.form_error input {
    background: rgba(var(--red), 0.1);
}
   .form_error span svg {
    fill: #D45658!important;
}
.log-btn {
    width: 100%;
    padding: 10px 25px;
    margin: 15px auto 5px;
    color: white;
    background: rgba(var(--theme), 1);
    border: none;
    font-size: 15px;
    border-radius: 50px;
    font-family: 'noto';
}.log-btn:hover {
    background: #492082;cursor: pointer;
}
.google-btn a{
    display: block;
    width: 100%;
    padding: 10px 25px;
    margin: 15px auto 5px;
    color: rgba(var(--text), 1);
    background: rgba(var(--div-bg), 1);
    border: 1px solid var(--border);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: .5px;
    border-radius: 50px;
    box-shadow: 2px 4px 10px rgba(var(--theme), 0.1);
    transition: all .3s ease-in-out;
}.google-btn a:hover {
    transform: translateY(-5px);
    box-shadow: 2px 4px 10px rgba(var(--theme), 0.3);
}
.google-btn a svg{
    width: 20px;
    height: 20px;
    margin-right: 15px;
}
    .form span svg{
        color: rgba(var(--theme), 0.5);
        position: absolute;
        left: 15px;
        top: 20px;
        width: 20px;
        z-index: 3;
    }
    .no-ac{
        padding-top: 20px;
    }.no-ac a{
        color: rgba(var(--theme), 1);
        font-weight: 700;
        margin-left: 7px;
    }.no-ac a:hover{
        color: rgba(var(--red), 1);
    }
@media screen and (max-width: 768px) {
   .flexs{
        width: 100%;
        height: 550px;
        padding: 20px!important;
        mask: none!important;
    } 
}
/*autofill background remove*/
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
select:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px transparent inset !important;
    box-shadow: 0 0 0 1000px transparent inset !important;

    -webkit-text-fill-color: rgba(var(--text), 1) !important;
    caret-color: inherit;

    transition: background-color 9999s ease-in-out 0s;
}
