body {
    padding: 0;
    margin: 0;
    width: 100%;
}
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 30px;
    height: 70px;
    background: blue;
    color: white;
    /* width: 100%; */
}

nav a {
    color: white;
    text-decoration: none;
    background: gray;
    padding: 5px 10px;
    border-radius: 10px;
    padding-right: 30px;
}

#login-form {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

}

form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}


form input {
    width: 250px;
    padding: 10px;
    border-radius: 10px;
    border: none;
    background: gray;
    color: white;
    outline: none;
    cursor: pointer;
}


form input::placeholder {
    color: white;
}


#btn {
    padding: 10px;
    border-radius: 10px;
    background: blue;
    color: white;
    border: none;
    text-align: center;
}
#btn:hover{
    background-color: burlywood;
}

form a {
    text-decoration: none;
    text-align: center;
}
#error-message {
    text-align: center;
    color: red;
    margin-top: 5px;
    /* display: none; */
}
#errooo{
    color: red;
    display: flex;
    justify-content: center;
}



@media only screen and (max-width:690px) {
   
    form input {
        width: 300px;
    }

    
}