header, footer
{
    display: none;
}
main
{
    margin-top: inherit;
    height: 100vh;
}

#securityPage
{
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    --border-radius: 10px;
    height: 100vh;
}
#securityPage::before{
    z-index: -2;
    position: absolute;
    content: '';
    height: calc(100%);
    width: calc(100%);
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    /* background: linear-gradient(135deg, #3b3745 0%, #6f3cfb 100%);
    filter: brightness(0.7) saturate(1.4); */
    background: linear-gradient(135deg, #050011 0%, #100629 100%);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
}
@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
.backgroundMovingBall {
    z-index: -1;
    position: absolute;
    border-radius: 50%;
    filter: blur(3px);
    opacity: 0.2;
}

#ball1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #ff6b6b, #ee5a6f);
    top: 20%;
    left: 10%;
    animation: float1 20s ease-in-out infinite;
}
#ball2 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, #4ecdc4, #44a3a0);
    top: 60%;
    left: 60%;
    animation: float2 25s ease infinite;
}
#ball3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, #ffd93d, #f9ca24);
    top: 40%;
    left: 70%;
    animation: float3 30s linear infinite;
}
@keyframes float1 {
    0%, 100% {
    transform: translate(0, 0) scale(1);
    }
    25% {
    transform: translate(100px, 150px) scale(1.1);
    }
    50% {
    transform: translate(200px, 50px) scale(0.9);
    }
    75% {
    transform: translate(50px, -100px) scale(1.05);
    }
}
@keyframes float2 {
    0%, 100% {
    transform: translate(0, 0) scale(1);
    }
    25% {
    transform: translate(-150px, -100px) scale(1.15);
    }
    50% {
    transform: translate(-50px, 100px) scale(0.85);
    }
    75% {
    transform: translate(100px, 50px) scale(1.1);
    }
}
@keyframes float3 {
    0%, 100% {
    transform: translate(0, 0) scale(1);
    }
    33% {
    transform: translate(-200px, 100px) scale(1.2);
    }
    66% {
    transform: translate(150px, -150px) scale(0.9);
    }
}


#goBack
{
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    z-index: 10;
}
#goBack a
{
    font-family: "Zalando Sans Expanded", sans-serif;
    color: var(--white);
}
#goBack ion-icon
{
    font-size: 16px;
    color: var(--white);
}

#loginForm
{
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-items: center;
    align-items: start;
    gap: 30px;
    min-width: 400px;
}
.title
{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom: 10px;
}
h1
{
    text-align: center;
    width: 100%;
    font-size: 1.6em;
    color: var(--white);
    font-family: "Zalando Sans Expanded", sans-serif;
}
h2
{
    text-align: center;
    width: 100%;
    font-size: 1.2em;
    color: var(--white);
    font-family: "Zalando Sans Expanded", sans-serif;
    text-decoration: overline 2px orange;
    text-underline-offset: 2px;
}
#error
{
    width: 100%;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 6px;
    color: var(--white);
}
#error ion-icon
{
    font-size: 18px;
}
#loginForm form
{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 30px;
}
.colinput
{
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 8px;
}
.colinput input
{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    padding: 12px 12px;
    outline: none;
    border: solid 1px rgba(255, 255, 255, 0.393);
    border-radius: var(--border-radius);
    background: inherit;
    color: var(--white);
}
.colinput input:focus
{
    border: solid 1px rgba(255, 255, 255, 0.9);
}
.colinput input::placeholder
{
    color: rgba(255, 255, 255, 0.345);
    font-weight: 200;
}
button[type="submit"]
{
    margin: 0px auto;
    width: 100%;
    outline: none;
    border: none;
    padding: 12px 18px;
    border-radius: var(--border-radius);
    color: var(--white);
    cursor: pointer;
    font-weight: 500;
    font-size: 1.1em;
    font-family: "Zalando Sans Expanded", sans-serif;
    background: #b5a528;
    background: -webkit-linear-gradient(286deg, rgba(181, 165, 40, 1) 0%, rgba(237, 122, 33, 1) 100%);
    background: -moz-linear-gradient(286deg, rgba(181, 165, 40, 1) 0%, rgba(237, 122, 33, 1) 100%);
    background: linear-gradient(286deg, rgba(181, 165, 40, 1) 0%, rgba(237, 122, 33, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#B5A528", endColorstr="#ED7A21", GradientType=0);
}

@media (max-width: 850px) {

    #loginForm
    {
        width: 100%;
        height: 100%;
        background-color: inherit;
        justify-content: start;
        border-radius: 0px;
        border: none;
        box-shadow: none;
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        padding: 30px;
        gap: 20px;
        padding-top: 100px;
    }
}