.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: var(--radius-sm);
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: 1rem;
    box-shadow: var(--shadow-md);
}
nav{
    display: flex !important;
    justify-content: center !important;
}
form {
    background-color: #fff;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: var(--radius-md);
    padding: 2rem;
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: var(--radius-sm);
    width: 100%;
    background-color: var(--nav-color);
    color: #fff;
    font-weight: 700;
    font-size: 1.3rem;
    line-height: 32px;
    letter-spacing: -0.6px;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

form input[type='submit']:hover {
    background-color: var(--nav-color-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}
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;

}