.login-container {
    margin: 50px auto;
    width: 350px;
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.login-container h2 {
    margin-bottom: 20px;
    color: #333;
    font-size: 22px;
}

.login-container input {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border-radius: 8px;
    border: 1px solid #ccc;
    outline: none;
    font-size: 14px;
    transition: 0.3s;
}

.login-container input:focus {
    border-color: #f9a825;
    box-shadow: 0 0 5px rgba(249,168,37,0.5);
}

.login-container button {
    width: 100%;
    padding: 12px;
    margin-top: 15px;
    background: #f9a825;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    color: white;
    font-weight: bold;
    transition: 0.3s;
}

#navbar button {
    padding: 12px;
    margin-top: 15px;
    background: #f9a825;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    color: white;
    font-weight: bold;
    transition: 0.3s;
}

.login-container button:hover {
    background: #f57f17;
}

#navbar button:hover {
    background: #f57f17;
}

.login-container p {
    color: red;
    margin: 10px 0;
}