body{
    background-color: var(--bg-color-1);
    color: var(--text-color);
    font-family: Inter, ui-sans-serif, system-ui, sans-serif;
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}
.form_container{
    top: 300px;
    width: 300px;
    background-color: var(--bg-color-2);
    align-items: center;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,.2);
    text-align: center;
}
form{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 5px;
}
.input_box{
    position: relative;
    display: inline-block;
}
.input_box::after{
    content: '';
    position: absolute;
    left: 0;
    bottom: 20px;
    height: 2px;
    width: 0;
    background-color: var(--text-color);
    transition: width 0.5s ease;
}
.input_box:focus-within::after{
    width: 100%;
}
input{
    color: var(--text-color);
    width: 200px;
    height: 30px;
    margin: 20px 0px;
    background-color: var(--bg-color-2);
    border: none;
    border-bottom: 2px solid var(--bg-color-3);
    padding: 5px;
    box-sizing: border-box;
    line-height: 1;
}
input:-webkit-autofill,input:-webkit-autofill:hover,input:-webkit-autofill:focus,input:-webkit-autofill:active{
    -webkit-box-shadow: 0 0 0 1000px #1e293b inset !important; /* Twój kolor tła */
    -webkit-text-fill-color: #e2e8f0 !important; /* kolor tekstu */
    transition: background-color 9999s ease-in-out 0s; /* hack na Chrome */
}
input:focus{
    outline: none; 
}
*,*::before,*::after{
    box-sizing: border-box;
}
button{
    font-family: Inter, ui-sans-serif, system-ui, sans-serif;
    width: 100px;
    height: 30px;
    color: var(--text-color-2);
    background-color: var(--bg-color-3);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    margin: 10px 0;
}
h1{
    font-size: 20px;
}
p{
    color: var(--text-muted);
    font-size: small;
    margin-block-start: 0;
    margin-block-end: 0;
}
p:first-of-type{
    margin: 5px 0;
}
a{
    color: var(--primary-color);
}