.login-container{
    width: 400px;
    max-width: 100%;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: calc(100vh - 110px);
    justify-content: center;
    margin-bottom: 3rem;
    margin-top: 3rem;
}
.slogan{
font-weight: 400;
font-size: 1rem;
line-height: 32px;
letter-spacing: -0.2px;
text-align: center;

}
.error{
    width: 100%;
    background-color: var(--nay);
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: bold;
    margin-top: 1rem;
}
nav{
    display: flex !important;
    justify-content: center !important;
}
form{
    background-color: #fff;
    box-shadow: 0px 34px 33px -23px rgba(22, 28, 45, 0.13);
border: 1px solid rgba(231, 233, 237, 1);
border-radius: 10px;
padding: 1rem;
width: 100%;
display: flex;
flex-direction: column;
gap: 1rem;
}
form .form-item{
    width: 100%;
}
label{
font-weight: 700;
font-size: 1rem;
line-height: 26px;
letter-spacing: -0.1px;

}
.label{
    display: flex;
    justify-content: space-between;
}
.label a{
    text-decoration: none;
    color: var(--nay);
}
form input[type='submit']{
    height: 60px;
    border-radius: 8px;
    width: 100%;
    background-color: var(--nav-color);
    color: #fff;
font-weight: 700;
font-size: 1.5rem;
line-height: 32px;
letter-spacing: -0.6px;
text-align: center;

}
form input[type='text'],
form input[type='password'],
form input[type='email']{
    border: 1px solid rgba(231, 233, 237, 1);
    width: 100%;
    border-radius: 8px;
    height: 50px;
    font-size: 1rem;
font-weight: 400;
line-height: 26px;
letter-spacing: -0.1px;
padding-inline: 1rem;

}