
html,*,*::after,*::before{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
@font-face{
    font-family: "funnel";
    src: url("FunnelDisplay-Regular.ttf") format("truetype");
}
body{
    font-family: "funnel" , monospace;
    width: 100vw;
    height: 100vh;
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: black;
}

button,input{
    font-family: "funnel" , monospace;
    color: white;
    background-color: transparent;
    border: none;
    outline: none;
    all: inset;
    box-sizing: border-box;


}

.disig{
    width: 30rem;
    height: 30rem;
    display: flex;
    justify-content: center;
    align-items: center ;
    position: relative;
}


.container{

    width: 18rem;
    height: 25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: rgba(255, 255, 255, 0);
    backdrop-filter: blur(10px);
    border: 1px solid white;
    border-radius: 2rem;
}
.logo{
    width: 4rem;
    height: 4rem;
    border-radius: 100%;
    margin-top: 1rem;
}
.title{
    margin-top: 0.5rem;
    color: white;
}
.username-box{
    margin-top: 3rem;
}
.username-box-input{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    border: 1px solid white;
    padding: 0 0 0 5px;
    border-radius: 0.5rem;
}
input{
    width: 13.5rem;
    height: 2rem;
    font-size: 1rem;
}
svg{
    width: 1.2rem;
    height: 1.2rem;
    color: white;
}

.user__error{
    height: 0.8rem;
    color: #ff4545;
    font-size: 0.8rem;
}
.password-box{
    margin-top: 1rem;
}
.password-box-input{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    border: 1px solid white;
    padding: 0 0 0 5px;
    border-radius: 0.5rem;
}

.pass__error{
    height: 0.8rem;
    color: #ff4545;
    font-size: 0.8rem;
}
.button__error{
    text-align: center;
    color: green;
}
.btn{
    margin-top: 3.5rem;
    width: 15rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    border: 1px solid white;
    cursor: pointer;
    transition: all 200ms ease-in-out 2ms;
    font-size: 1.1rem ;
}

.btn:hover{
    background-color: rgba(72, 68, 68, 0.269);
    backdrop-filter: blur(5px);
    transform: scaleX(1.05);
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.btnL:active{
    cursor: default;
}

.crl1{
    width: 15rem;
    height: 15rem;
    border-radius: 100%;
    position: absolute;
    background: linear-gradient(164deg,#004D40,#81C784);
    right: 0;
    top: 0;
    z-index: -1;
    animation: ani2 infinite 10000ms linear;
}
.crl2{
    width: 15rem;
    height: 15rem;
    border-radius: 100%;
    position: absolute;
    background: linear-gradient(27deg,#4A148C,#7986CB);
    bottom: 0;
    left: -5rem;
    z-index: -1;
    animation: ani infinite 5000ms linear ;
}

@keyframes ani {
    0%   { transform: translateY(5px); }
    50%  { transform: translateY(-5px); }
    100% { transform: translateY(5px); }
}

@keyframes ani2 {
    0%   { transform: translateY(10px); }
    50%  { transform: translateY(-10px); }
    100% { transform: translateY(10px); }
}